add missing include files in headers
This commit is contained in:
parent
22c10224ac
commit
e36f4bc4b6
2 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#ifndef LIBUNICODE_H
|
||||
#define LIBUNICODE_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#define LRE_BOOL int /* for documentation purposes */
|
||||
|
|
Loading…
Reference in a new issue