Changes in uspace/lib/bithenge/src/helenos/common.h [2498b95:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/helenos/common.h
r2498b95 r5a6cc679 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 75 83 static inline errno_t bithenge_parse_int(const char *start, bithenge_int_t *result) 76 84 {
Note:
See TracChangeset
for help on using the changeset viewer.