nasm/quote.h

12 lines
202 B
C
Raw Normal View History

#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 */