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


Ignore:
Timestamp:
2015-08-11T16:03:59Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0bde8523
Parents:
1b23e33
Message:

Set partition type based on selected filesystem type.

File:
1 edited

Legend:

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

    r1b23e33 rf57ccb5  
    3737
    3838#include <stdint.h>
    39 
    40 enum {
    41         uuid_bytes = 16
    42 };
    43 
    44 /** Universally Unique Identifier */
    45 typedef struct {
    46         uint8_t b[uuid_bytes];
    47 } uuid_t;
     39#include <types/uuid.h>
    4840
    4941extern int uuid_generate(uuid_t *);
    5042extern void uuid_encode(uuid_t *, uint8_t *);
    5143extern void uuid_decode(uint8_t *, uuid_t *);
     44extern int uuid_parse(const char *, uuid_t *, const char **);
     45extern int uuid_format(uuid_t *, char **);
    5246
    5347#endif
Note: See TracChangeset for help on using the changeset viewer.