2 * This file is part of DisOrder.
3 * Copyright (C) 2004, 2006 Richard Kettlewell
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
34 static inline int space(int c) {
41 static void no_error_handler(const char attribute((unused)) *msg,
42 void attribute((unused)) *u) {
45 char **split(const char *p,
48 void (*error_handler)(const char *msg, void *u),
56 if(!error_handler) error_handler = no_error_handler;
58 while(*p && !(*p == '#' && (flags & SPLIT_COMMENTS))) {
63 if((flags & SPLIT_QUOTES) && (*p == '"' || *p == '\'')) {
66 for(q = p; *q && *q != qc; ++q) {
67 if(*q == '\\' && q[1])
72 error_handler("unterminated quoted string", u);
75 f = g = xmalloc_noptr(l + 1);
76 for(q = p; *q != qc;) {
90 error_handler("illegal escape sequence", u);
99 for(q = p; *q && !space(*q); ++q)
105 vector_append(&v, f);
107 vector_terminate(&v);
113 const char *quoteutf8(const char *s) {
114 size_t len = 3 + strlen(s);
118 /* see if we need to quote */
121 if((unsigned char)*t <= ' '
131 /* we rely on ASCII characters only ever representing themselves in UTF-8. */
132 for(t = s; *t; t++) {
141 q = r = xmalloc_noptr(len);
143 for(t = s; *t; t++) {