add missing include files in headers

This commit is contained in:
Charlie Gordon 2024-06-06 12:35:34 +02:00
parent 22c10224ac
commit e36f4bc4b6
2 changed files with 2 additions and 1 deletions

View file

@ -53,7 +53,7 @@ int lre_exec(uint8_t **capture,
int lre_parse_escape(const uint8_t **pp, int allow_utf16);
LRE_BOOL lre_is_space(int c);
void lre_byte_swap(uint8_t *buf, size_t len, BOOL is_byte_swapped);
void lre_byte_swap(uint8_t *buf, size_t len, LRE_BOOL is_byte_swapped);
/* must be provided by the user */
LRE_BOOL lre_check_stack_overflow(void *opaque, size_t alloca_size);

View file

@ -24,6 +24,7 @@
#ifndef LIBUNICODE_H
#define LIBUNICODE_H
#include <stddef.h>
#include <inttypes.h>
#define LRE_BOOL int /* for documentation purposes */