Changes in uspace/lib/c/include/uuid.h [5a6cc679:6c707e4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/uuid.h
r5a6cc679 r6c707e4 33 33 */ 34 34 35 #ifndef LIBC_UUID_H_36 #define LIBC_UUID_H_35 #ifndef _LIBC_UUID_H_ 36 #define _LIBC_UUID_H_ 37 37 38 38 #include <stdint.h> 39 39 #include <types/uuid.h> 40 #include <stdbool.h> 40 41 41 42 extern errno_t uuid_generate(uuid_t *); … … 43 44 extern void uuid_decode(uint8_t *, uuid_t *); 44 45 extern errno_t uuid_parse(const char *, uuid_t *, const char **); 45 extern errno_t uuid_format(uuid_t *, char ** );46 extern errno_t uuid_format(uuid_t *, char **, bool); 46 47 47 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.