e6b5fc99550c8b2fad6729b20949ebcb5f6a3f97
[oweals/busybox.git] / libbb / process_escape_sequence.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) Manuel Novoa III <mjn3@codepoet.org>
6  * and Vladimir Oleynik <dzo@simtreas.ru>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  *
23  */
24
25 #include <string.h>
26 #include <stdio.h>
27 #include <limits.h>
28 #include <ctype.h>
29 #include "libbb.h"
30
31 #define isodigit(c) ((c) >= '0' && (c) <= '7')
32 #define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0')
33 #define octtobin(c) ((c) - '0')
34 char bb_process_escape_sequence(const char **ptr)
35 {
36         const char *p, *q;
37         unsigned int num_digits, r, n, hexescape;
38         static const char charmap[] = {
39                 'a',  'b',  'f',  'n',  'r',  't',  'v',  '\\', 0,
40                 '\a', '\b', '\f', '\n', '\r', '\t', '\v', '\\', '\\' };
41
42         n = r = hexescape = num_digits = 0;
43         q = *ptr;
44
45         if (*q == 'x') {
46                 hexescape++;
47                 ++q;
48         }
49
50         do {
51                 if (hexescape && isxdigit(*q)) {
52                         r = n * 16 + hextobin(*q);
53                 } else if (isodigit(*q)) {
54                         r = n * 8 + octtobin(*q);
55                 }
56                 if (r <= UCHAR_MAX) {
57                         n = r;
58                         ++q;
59                         if (++num_digits < 3) {
60                                 continue;
61                         }
62                 }
63                 break;
64         } while (1);
65
66         if (num_digits == 0) {  /* mnemonic escape sequence? */
67                 p = charmap;
68                 do {
69                         if (*p == *q) {
70                                 q++;
71                                 break;
72                         }
73                 } while (*++p);
74                 n = *(p+(sizeof(charmap)/2));
75         }
76
77         *ptr = q;
78         return (char) n;
79 }
80
81 /* END CODE */
82 /*
83 Local Variables:
84 c-file-style: "linux"
85 c-basic-offset: 4
86 tab-width: 4
87 End:
88 */