]> Zhao Yanbai Git Server - minix.git/commitdiff
Prototypes for some string functions that are not part of the C standard.
authorPhilip Homburg <philip@cs.vu.nl>
Wed, 27 Jul 2005 11:44:26 +0000 (11:44 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Wed, 27 Jul 2005 11:44:26 +0000 (11:44 +0000)
include/strings.h [new file with mode: 0644]

diff --git a/include/strings.h b/include/strings.h
new file mode 100644 (file)
index 0000000..52bc602
--- /dev/null
@@ -0,0 +1,9 @@
+/*
+strings.h
+*/
+
+/* Open Group Base Specifications Issue 6 (not complete) */
+_PROTOTYPE( char *index, (const char *_s, int _charwanted)             );
+_PROTOTYPE( int strcasecmp, (const char *_s1, const char *_s2)         );
+_PROTOTYPE( int strncasecmp, (const char *_s1, const char *_s2,
+                                                       size_t _len)    );