From 8cad14bbcf0b8c056e6f81dccf4af38537e0bac6 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sun, 1 Jun 2008 17:23:51 -0700 Subject: qstring: first cut at full quoted string support in the preprocessor First attempt at properly handle quoted strings in the preprocessor. This also adds range support in %substr. No support in the assembler yet. --- quote.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 quote.h (limited to 'quote.h') diff --git a/quote.h b/quote.h new file mode 100644 index 00000000..501f7350 --- /dev/null +++ b/quote.h @@ -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 */ + -- cgit v1.2.1