Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
3c1ec82b
Commit
3c1ec82b
authored
22 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Now exports nopen and truncsp.
Moved string stripping functions to str.cpp.
parent
f9587b02
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sbbs3/misc.c
+2
-51
2 additions, 51 deletions
src/sbbs3/misc.c
with
2 additions
and
51 deletions
src/sbbs3/misc.c
+
2
−
51
View file @
3c1ec82b
...
...
@@ -43,7 +43,7 @@
/* number of times if the attempted file is already open or denying access */
/* for some other reason. All files are opened in BINARY mode. */
/****************************************************************************/
int
nopen
(
char
*
str
,
int
access
)
int
DLLCALL
nopen
(
char
*
str
,
int
access
)
{
int
file
,
share
,
count
=
0
;
...
...
@@ -119,55 +119,6 @@ int bstrlen(char *str)
return
(
i
);
}
char
*
DLLCALL
strip_ctrl
(
char
*
str
)
{
char
tmp
[
1024
];
int
i
,
j
;
for
(
i
=
j
=
0
;
str
[
i
]
&&
j
<
sizeof
(
tmp
)
-
1
;
i
++
)
if
(
str
[
i
]
==
CTRL_A
&&
str
[
i
+
1
]
!=
0
)
i
++
;
else
if
((
uchar
)
str
[
i
]
>=
SP
)
tmp
[
j
++
]
=
str
[
i
];
tmp
[
j
]
=
0
;
strcpy
(
str
,
tmp
);
return
(
str
);
}
char
*
DLLCALL
strip_exascii
(
char
*
str
)
{
char
tmp
[
1024
];
int
i
,
j
;
for
(
i
=
j
=
0
;
str
[
i
]
&&
j
<
sizeof
(
tmp
)
-
1
;
i
++
)
if
(
!
(
str
[
i
]
&
0x80
))
tmp
[
j
++
]
=
str
[
i
];
tmp
[
j
]
=
0
;
strcpy
(
str
,
tmp
);
return
(
str
);
}
char
*
DLLCALL
prep_file_desc
(
char
*
str
)
{
char
tmp
[
1024
];
int
i
,
j
;
for
(
i
=
j
=
0
;
str
[
i
];
i
++
)
if
(
str
[
i
]
==
CTRL_A
&&
str
[
i
+
1
]
!=
0
)
i
++
;
else
if
(
j
&&
str
[
i
]
<=
SP
&&
tmp
[
j
-
1
]
==
SP
)
continue
;
else
if
(
i
&&
!
isalnum
(
str
[
i
])
&&
str
[
i
]
==
str
[
i
-
1
])
continue
;
else
if
((
uchar
)
str
[
i
]
>=
SP
)
tmp
[
j
++
]
=
str
[
i
];
else
if
(
str
[
i
]
==
TAB
||
(
str
[
i
]
==
CR
&&
str
[
i
+
1
]
==
LF
))
tmp
[
j
++
]
=
SP
;
tmp
[
j
]
=
0
;
strcpy
(
str
,
tmp
);
return
(
str
);
}
/****************************************************************************/
/* Returns in 'string' a character representation of the number in l with */
/* commas. */
...
...
@@ -191,7 +142,7 @@ char *ultoac(ulong l, char *string)
/****************************************************************************/
/* Truncates white-space chars off end of 'str' */
/****************************************************************************/
void
truncsp
(
char
*
str
)
void
DLLCALL
truncsp
(
char
*
str
)
{
uint
c
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment