diff options
Diffstat (limited to 'vendor/tree-sitter-cuda/src/tree_sitter/alloc.h')
| -rw-r--r-- | vendor/tree-sitter-cuda/src/tree_sitter/alloc.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/vendor/tree-sitter-cuda/src/tree_sitter/alloc.h b/vendor/tree-sitter-cuda/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/vendor/tree-sitter-cuda/src/tree_sitter/alloc.h | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | #ifndef TREE_SITTER_ALLOC_H_ | ||
| 2 | #define TREE_SITTER_ALLOC_H_ | ||
| 3 | |||
| 4 | #ifdef __cplusplus | ||
| 5 | extern "C" { | ||
| 6 | #endif | ||
| 7 | |||
| 8 | #include <stdbool.h> | ||
| 9 | #include <stdio.h> | ||
| 10 | #include <stdlib.h> | ||
| 11 | |||
| 12 | // Allow clients to override allocation functions | ||
| 13 | #ifdef TREE_SITTER_REUSE_ALLOCATOR | ||
| 14 | |||
| 15 | extern void *(*ts_current_malloc)(size_t); | ||
| 16 | extern void *(*ts_current_calloc)(size_t, size_t); | ||
| 17 | extern void *(*ts_current_realloc)(void *, size_t); | ||
| 18 | extern void (*ts_current_free)(void *); | ||
| 19 | |||
| 20 | #ifndef ts_malloc | ||
| 21 | #define ts_malloc ts_current_malloc | ||
| 22 | #endif | ||
| 23 | #ifndef ts_calloc | ||
| 24 | #define ts_calloc ts_current_calloc | ||
| 25 | #endif | ||
| 26 | #ifndef ts_realloc | ||
| 27 | #define ts_realloc ts_current_realloc | ||
| 28 | #endif | ||
| 29 | #ifndef ts_free | ||
| 30 | #define ts_free ts_current_free | ||
| 31 | #endif | ||
| 32 | |||
| 33 | #else | ||
| 34 | |||
| 35 | #ifndef ts_malloc | ||
| 36 | #define ts_malloc malloc | ||
| 37 | #endif | ||
| 38 | #ifndef ts_calloc | ||
| 39 | #define ts_calloc calloc | ||
| 40 | #endif | ||
| 41 | #ifndef ts_realloc | ||
| 42 | #define ts_realloc realloc | ||
| 43 | #endif | ||
| 44 | #ifndef ts_free | ||
| 45 | #define ts_free free | ||
| 46 | #endif | ||
| 47 | |||
| 48 | #endif | ||
| 49 | |||
| 50 | #ifdef __cplusplus | ||
| 51 | } | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #endif // TREE_SITTER_ALLOC_H_ | ||
