Changes in uspace/lib/c/include/mem.h [8d2dd7f2:2498b95] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/mem.h
r8d2dd7f2 r2498b95 1 1 /* 2 2 * Copyright (c) 2005 Martin Decky 3 * Copyright (c) 2018 Jiri Svoboda 3 4 * All rights reserved. 4 5 * … … 49 50 extern int memcmp(const void *, const void *, size_t) 50 51 __attribute__((nonnull(1, 2))); 52 extern void *memchr(const void *, int, size_t) 53 __attribute__((nonnull(1))); 51 54 52 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.