0
0
Fork 0
mirror of https://github.com/ZDoom/raze-gles.git synced 2025-01-18 21:31:37 +00:00
raze-gles/tools/re2c/src/parse/unescape.h
Christoph Oelckers 8c95516224 - added compile tools from GZDoom repo:
- updaterevision for automated revision string generation
- re2c as a prerequisite to use sc_man in the future
- zipdir to automatically generate an engine resource file.
2019-09-22 08:52:30 +02:00

13 lines
281 B
C++

#ifndef _RE2C_PARSE_UNESCAPE_
#define _RE2C_PARSE_UNESCAPE_
#include "src/util/c99_stdint.h"
namespace re2c {
uint32_t unesc_hex (const char * s, const char * s_end);
uint32_t unesc_oct (const char * s, const char * s_end);
} // namespace re2c
#endif // _RE2C_PARSE_UNESCAPE_