summaryrefslogtreecommitdiff
path: root/quote.h
blob: 5f96159e4579b979672cd66835c091208e8b7d28 (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 **endptr);
char *nasm_skip_string(char *str);

#endif /* NASM_QUOTE_H */