2020-11-02 11:20:34 +03:00
|
|
|
#ifndef __LIB__GUID_H__
|
|
|
|
#define __LIB__GUID_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct guid {
|
|
|
|
uint32_t a;
|
|
|
|
uint16_t b;
|
|
|
|
uint16_t c;
|
|
|
|
uint8_t d[8];
|
2021-11-24 14:24:17 +03:00
|
|
|
};
|
2020-11-02 11:20:34 +03:00
|
|
|
|
|
|
|
bool is_valid_guid(const char *s);
|
2021-01-17 18:36:17 +03:00
|
|
|
bool string_to_guid_be(struct guid *guid, const char *s);
|
|
|
|
bool string_to_guid_mixed(struct guid *guid, const char *s);
|
2020-11-02 11:20:34 +03:00
|
|
|
|
|
|
|
#endif
|