Changeset 8a5a902 in mainline for uspace/lib/posix
- Timestamp:
- 2013-03-29T16:26:39Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ca441c
- Parents:
- 2d1195c0
- File:
-
- 1 edited
-
uspace/lib/posix/include/posix/string.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/string.h
r2d1195c0 r8a5a902 60 60 * forward declarations ought to be enough. 61 61 */ 62 62 63 /* From str.h. */ 63 extern char * strtok_r(char *, const char *, char **); 64 extern char * strtok(char *, const char *); 64 65 extern char *strtok_r(char *, const char *, char **); 66 extern char *strtok(char *, const char *); 65 67 66 68 /* From mem.h */ 69 70 #define memset(dst, val, cnt) __builtin_memset((dst), (val), (cnt)) 71 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 72 67 73 #define bzero(ptr, len) memset((ptr), 0, (len)) 68 extern void *memset(void *, int, size_t); 69 extern void *memcpy(void *, const void *, size_t); 74 70 75 extern void *memmove(void *, const void *, size_t); 71 76 extern int bcmp(const void *, const void *, size_t); 72 77 73 78 /* Copying and Concatenation */
Note:
See TracChangeset
for help on using the changeset viewer.
