diff options
author | Charlie Gordon <github@chqrlie.org> | 2024-02-10 16:18:11 +0100 |
---|---|---|
committer | Charlie Gordon <github@chqrlie.org> | 2024-02-10 16:19:17 +0100 |
commit | 37bd4ae62db064984a5956ab534920dfa21e3c5d (patch) | |
tree | 3bfd1df7e0e68e53771fab0fca9e17a1ef7b8156 /libregexp.h | |
parent | 6f480abbc8b2abe91fcc0fa58aa07c367e1dcb36 (diff) | |
download | quickjs-37bd4ae62db064984a5956ab534920dfa21e3c5d.tar.gz quickjs-37bd4ae62db064984a5956ab534920dfa21e3c5d.zip |
Strip trailing spaces
Diffstat (limited to 'libregexp.h')
-rw-r--r-- | libregexp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libregexp.h b/libregexp.h index c0bc58d..7c03b1a 100644 --- a/libregexp.h +++ b/libregexp.h @@ -1,6 +1,6 @@ /* * Regular Expression Engine - * + * * Copyright (c) 2017-2018 Fabrice Bellard * * Permission is hereby granted, free of charge, to any person obtaining a copy @@ -54,7 +54,7 @@ int lre_parse_escape(const uint8_t **pp, int allow_utf16); LRE_BOOL lre_is_space(int c); /* must be provided by the user */ -LRE_BOOL lre_check_stack_overflow(void *opaque, size_t alloca_size); +LRE_BOOL lre_check_stack_overflow(void *opaque, size_t alloca_size); void *lre_realloc(void *opaque, void *ptr, size_t size); /* JS identifier test */ |