Changeset ed3d605 in mainline for uspace/lib/c/include/uuid.h


Ignore:
Timestamp:
2019-02-09T18:31:41Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
d55abe8b
Parents:
a508e82
Message:

Adding an implementation of uuid_format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/uuid.h

    ra508e82 red3d605  
    3838#include <stdint.h>
    3939#include <types/uuid.h>
     40#include <stdbool.h>
    4041
    4142extern errno_t uuid_generate(uuid_t *);
     
    4344extern void uuid_decode(uint8_t *, uuid_t *);
    4445extern errno_t uuid_parse(const char *, uuid_t *, const char **);
    45 extern errno_t uuid_format(uuid_t *, char **);
     46extern errno_t uuid_format(uuid_t *, char **, bool);
    4647
    4748#endif
Note: See TracChangeset for help on using the changeset viewer.