diff options
Diffstat (limited to 'quote.h')
-rw-r--r-- | quote.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef NASM_QUOTE_H +#define NASM_QUOTE_H + +#include "compiler.h" + +char *nasm_quote(char *str, size_t len); +size_t nasm_unquote(char *str); +char *nasm_skip_string(char *str); + +#endif /* NASM_QUOTE_H */ + |