Changes in uspace/lib/bithenge/src/helenos/common.h [5a6cc679:2498b95] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/helenos/common.h
r5a6cc679 r2498b95 73 73 } 74 74 75 static inline void *memchr(const void *s, int c, size_t n)76 {77 for (size_t i = 0; i < n; i++)78 if (((char *)s)[i] == c)79 return (void *)(s + i);80 return NULL;81 }82 83 75 static inline errno_t bithenge_parse_int(const char *start, bithenge_int_t *result) 84 76 {
Note:
See TracChangeset
for help on using the changeset viewer.