source: trunk/src/emx/include/strings.h@ 706

Last change on this file since 706 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)
9extern "C" {
10#endif
11
12int bcmp (__const__ void *, __const__ void *, size_t);
13void bcopy (__const__ void *, void *, size_t);
14void bzero (void *, size_t);
15int ffs (int i);
16char *index (__const__ char *, int);
17char *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.