Lines Matching refs:size_t
32 extern int memcmp(const void *, const void *, size_t);
33 extern void *memcpy(void *, const void *, size_t);
34 extern void *memset(void *, int, size_t);
36 extern size_t strlcat(char *, const char *, size_t);
37 extern size_t strlcpy(char *, const char *, size_t);
38 extern char *strncat(char *, const char *, size_t);
39 extern char *strncpy(char *, const char *, size_t);
53 static inline void *memchr(const void * s, int c, size_t n) in memchr()
68 static inline void *memscan(void *s, int c, size_t n) in memscan()
109 static inline size_t strlen(const char *s) in strlen()
121 static inline size_t strnlen(const char * s, size_t n) in strnlen()
134 void *memchr(const void * s, int c, size_t n);
135 void *memscan(void *s, int c, size_t n);
138 size_t strlen(const char *s);
139 size_t strnlen(const char * s, size_t n);