Changeset e64c4b2 in mainline for uspace/lib/libc/include/string.h
- Timestamp:
- 2008-12-23T19:45:57Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 404464a
- Parents:
- 576845ec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/string.h
r576845ec re64c4b2 36 36 #define LIBC_STRING_H_ 37 37 38 #include <mem.h> 38 39 #include <sys/types.h> 39 40 #define bzero(ptr, len) memset((ptr), 0, (len))41 42 extern void * memset(void *, int, size_t);43 extern void * memcpy(void *, const void *, size_t);44 extern void * memmove(void *, const void *, size_t);45 46 extern int bcmp(const char *, const char *, size_t);47 40 48 41 extern int strcmp(const char *, const char *);
Note:
See TracChangeset
for help on using the changeset viewer.