Changes in uspace/lib/posix/strings.h [fc3680e:458d356] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/strings.h
rfc3680e r458d356 31 31 * @{ 32 32 */ 33 /** @file Additional string manipulation.33 /** @file 34 34 */ 35 35 … … 37 37 #define POSIX_STRINGS_H_ 38 38 39 #ifndef POSIX_STRING_H_ 39 40 /* Search Functions */ 40 #ifndef POSIX_STRING_H_41 41 extern int posix_ffs(int i); 42 42 #endif … … 56 56 /* Legacy Functions */ 57 57 extern int posix_bcmp(const void *mem1, const void *mem2, size_t n); 58 extern void posix_bcopy(const void * src, void *dest, size_t n);58 extern void posix_bcopy(const void *dest, void *src, size_t n); 59 59 extern void posix_bzero(void *mem, size_t n); 60 60 extern char *posix_index(const char *s, int c);
Note:
See TracChangeset
for help on using the changeset viewer.