blob: 501f7350eb491e32bc2b2c3b2db8561d9adc3ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
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 */
|