diff options
| author | Theodore Tso <tytso@mit.edu> | 1993-06-03 19:29:40 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1993-06-03 19:29:40 +0000 |
| commit | 746386f12e01102acbe5637aac6f1259c74bb552 (patch) | |
| tree | 715df6527f739854dc978c588047607e1907e9e9 /src/include/bstring.h | |
| parent | acbed92e113f54d33789d427e697a23a0f07ab64 (diff) | |
| download | krb5-746386f12e01102acbe5637aac6f1259c74bb552.tar.gz krb5-746386f12e01102acbe5637aac6f1259c74bb552.tar.xz krb5-746386f12e01102acbe5637aac6f1259c74bb552.zip | |
Initial revision
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2611 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/bstring.h')
| -rw-r--r-- | src/include/bstring.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/bstring.h b/src/include/bstring.h new file mode 100644 index 000000000..33d0ba606 --- /dev/null +++ b/src/include/bstring.h @@ -0,0 +1,26 @@ +/* + * #include file for bstring(3) & sys5 version functions + * home. + */ +#ifndef __BSTRING__ +#define __BSTRING__ +#ifdef __STDC__ +/* compat-sys5 */ +/* these are in <string.h> */ +extern int bcmp (const char *, const char *, int ); +extern int bcopy (const char *, char *, int ); +extern int bzero (char *, int ); +#else /* STDC */ +/* compat-sys5 */ +extern char *memccpy (); +extern char *memchr (); +extern int memcmp (); +extern char *memcpy (); +extern char *memset (); + +extern int bcmp (); +extern int bcopy (); +extern int bzero (); + +#endif /* STDC */ +#endif /* __BSTRING__ */ |
