mirror of
https://github.com/trustedsec/LLVM-Obfuscation-Experiments
synced 2026-06-08 17:57:15 +00:00
13 lines
406 B
C
13 lines
406 B
C
/*
|
|
* Internal header to the utils subdirectory, for definitions shared
|
|
* between the library implementations but not intended to be exposed
|
|
* further than that.
|
|
*/
|
|
|
|
void dputs(const char *);
|
|
|
|
char *dupvprintf_inner(char *buf, size_t oldlen, size_t *sizeptr,
|
|
const char *fmt, va_list ap);
|
|
|
|
const char *host_strchr_internal(const char *s, const char *set, bool first);
|