summaryrefslogtreecommitdiffstats
path: root/src/include/bstring.h
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1993-06-03 19:29:40 +0000
committerTheodore Tso <tytso@mit.edu>1993-06-03 19:29:40 +0000
commit746386f12e01102acbe5637aac6f1259c74bb552 (patch)
tree715df6527f739854dc978c588047607e1907e9e9 /src/include/bstring.h
parentacbed92e113f54d33789d427e697a23a0f07ab64 (diff)
downloadkrb5-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.h26
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__ */