Last change
on this file since 63 was 18, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
424 bytes
|
Line | |
---|
1 | /* strings.h (emx+gcc) */
|
---|
2 |
|
---|
3 | #ifndef _STRINGS_H
|
---|
4 | #define _STRINGS_H
|
---|
5 |
|
---|
6 | #include <string.h>
|
---|
7 |
|
---|
8 | #if defined (__cplusplus)
|
---|
9 | extern "C" {
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | int bcmp (__const__ void *, __const__ void *, size_t);
|
---|
13 | void bcopy (__const__ void *, void *, size_t);
|
---|
14 | void bzero (void *, size_t);
|
---|
15 | int ffs (int i);
|
---|
16 | char *index (__const__ char *, int);
|
---|
17 | char *rindex (__const__ char *, int);
|
---|
18 |
|
---|
19 |
|
---|
20 | #if defined (__cplusplus)
|
---|
21 | }
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #endif /* not _STRINGS_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.