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
17fc3a5b
Commit
17fc3a5b
authored
22 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
misc.c prototypes are always included.
parent
c4b38cc9
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/sbbs.h
+17
-19
17 additions, 19 deletions
src/sbbs3/sbbs.h
with
17 additions
and
19 deletions
src/sbbs3/sbbs.h
+
17
−
19
View file @
17fc3a5b
...
...
@@ -871,7 +871,24 @@ extern "C" {
#endif
/* misc.c */
int
nopen
(
char
*
str
,
int
access
);
FILE
*
fnopen
(
int
*
file
,
char
*
str
,
int
access
);
int
bstrlen
(
char
*
str
);
void
backslashcolon
(
char
*
str
);
void
backslash
(
char
*
str
);
ulong
ahtoul
(
char
*
str
);
/* Converts ASCII hex to ulong */
char
*
ultoac
(
ulong
l
,
char
*
str
);
void
truncsp
(
char
*
str
);
/* Truncates white spaces off end of str */
char
*
hexplus
(
uint
num
,
char
*
str
);
/* Hex plus for 3 digits up to 9000 */
uint
hptoi
(
char
*
str
);
ulong
crc32
(
char
*
buf
,
ulong
len
);
void
ucrc16
(
uchar
ch
,
ushort
*
rcrc
);
int
lprintf
(
char
*
fmt
,
...);
/* telnet log */
int
pstrcmp
(
char
**
str1
,
char
**
str2
);
/* Compares pointers to pointers */
int
strsame
(
char
*
str1
,
char
*
str2
);
/* Compares number of same chars */
/* load_cfg.c */
BOOL
md
(
char
*
path
);
#ifdef SBBS
/* These aren't exported */
...
...
@@ -881,27 +898,8 @@ FILE * fnopen(int *file, char *str, int access);
BOOL
socket_check
(
SOCKET
sock
,
BOOL
*
rd
);
u_long
resolve_ip
(
char
*
addr
);
/* misc.c */
int
nopen
(
char
*
str
,
int
access
);
int
bstrlen
(
char
*
str
);
char
*
ultoac
(
ulong
l
,
char
*
str
);
void
truncsp
(
char
*
str
);
/* Truncates white spaces off end of str */
void
backslash
(
char
*
str
);
void
backslashcolon
(
char
*
str
);
ulong
crc32
(
char
*
buf
,
ulong
len
);
void
ucrc16
(
uchar
ch
,
ushort
*
rcrc
);
int
pstrcmp
(
char
**
str1
,
char
**
str2
);
/* Compares pointers to pointers */
int
strsame
(
char
*
str1
,
char
*
str2
);
/* Compares number of same chars */
ulong
ahtoul
(
char
*
str
);
/* Converts ASCII hex to ulong */
char
*
hexplus
(
uint
num
,
char
*
str
);
/* Hex plus for 3 digits up to 9000 */
uint
hptoi
(
char
*
str
);
char
*
readtext
(
long
*
line
,
FILE
*
stream
);
BOOL
md
(
char
*
path
);
int
eprintf
(
char
*
fmt
,
...);
/* event log */
int
lprintf
(
char
*
fmt
,
...);
/* telnet log */
int
lputs
(
char
*
);
/* telnet log */
/* qwk.cpp */
...
...
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