4 Copyright (C) 2003 Andreas Gruenbacher <a.gruenbacher@bestbits.at>
6 This program is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the
8 Free Software Foundation; either version 2.1 of the License, or (at
9 your option) any later version.
11 This program is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with this program. If not, see <http://www.gnu.org/licenses/>.
25 const char *quote(const char *str, const char *quote_chars)
27 static char *quoted_str;
28 static size_t quoted_str_len;
29 const unsigned char *s;
36 for (nonpr = 0, s = (unsigned char *)str; *s != '\0'; s++)
37 if (*s == '\\' || strchr(quote_chars, *s))
42 if (high_water_alloc((void **)"ed_str, "ed_str_len,
43 (s - (unsigned char *)str) + nonpr * 3 + 1))
45 for (s = (unsigned char *)str, q = quoted_str; *s != '\0'; s++) {
46 if (*s == '\\' || strchr(quote_chars, *s)) {
48 *q++ = '0' + ((*s >> 6) );
49 *q++ = '0' + ((*s >> 3) & 7);
50 *q++ = '0' + ((*s ) & 7);