]> git.bts.cx Git - benzene.git/blob - src/bz/types/identifier.h
Fixed Aseprite rendering system
[benzene.git] / src / bz / types / identifier.h
1 #ifndef BZ_TYPES_IDENTIFIER_H
2 #define BZ_TYPES_IDENTIFIER_H
3
4 #include <bz/types/common.h>
5 #include <stdlib.h>
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 #define kBZMaxIdentifierLength 256
12
13 typedef const char * BZIdentifier;
14 typedef uint32_t BZIdentifierHash;
15
16 extern BZIdentifierHash bzIdentifierHashFromIdentifier(BZIdentifier string);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif