home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
prgramer
/
unix
/
emx
/
include
/
strings.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-18
|
508b
|
24 lines
/* strings.h (emx+gcc) */
#if !defined (_STRINGS_H)
#define _STRINGS_H
#include <string.h>
#if defined (__cplusplus)
extern "C" {
#endif
int bcmp (__const__ void *buffer1, __const__ void *buffer2, size_t n);
void bcopy (__const__ void *src, void *dst, size_t n);
void bzero (void *buffer, size_t n);
int ffs (int i);
char *index (__const__ char *string, int c);
char *rindex (__const__ char *string, int c);
#if defined (__cplusplus)
}
#endif
#endif /* !defined (_STRINGS_H) */