File: csstoqe.c

package info (click to toggle)
qemacs 0.3.1-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,040 kB
  • ctags: 3,226
  • sloc: ansic: 29,371; sh: 353; makefile: 338
file content (73 lines) | stat: -rw-r--r-- 1,913 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* convert a CSS style sheet to C buffer so that it can be statically
   linked with qemacs */
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>

int main(int argc, char **argv)
{
    int c, n, last_c, got_space, in_string;

    printf("/* Automatically generated file - do not edit */\n");
    printf("const char %s[] =\n", argv[1]);
    n = 0;
    got_space = 0;
    last_c = 0;
    in_string = 0;
    for(;;) {
        c = getchar();
    redo:
        if (c == EOF)
            break;
        if (!in_string) {
            if (c == ' ' || c == '\t' || c == '\n') {
                got_space = 1;
                continue;
            }
            /* comments */
            if (c == '/') {
                c = getchar();
                if (c != '*') {
                    putchar('/');
                    goto redo;
                }
                for(;;) {
                    c = getchar();
                    if (c == EOF)
                        goto the_end;
                    while (c == '*') {
                        c = getchar();
                        if (c == EOF)
                            goto the_end;
                        if (c == '/')
                            goto end_comment;
                    }
                }
            end_comment:
                got_space = 1;
                continue;
            }
        }
        if (n == 0)
            printf("\"");
        /* add separator if needed */
        if (!in_string && got_space && isalnum(c) && isalnum(last_c))
            putchar(' ');
        if (c == '\"' || c == '\'' || c == '\\')
            putchar('\\');
        putchar(c);
        if (c == '\"')
            in_string ^= 1;
        last_c = c;
        got_space = 0;
        if (++n >= 64) {
            printf("\"\n");
            n = 0;
        }
    }
 the_end:
    if (n > 0)
        printf("\"\n");
    printf(";\n\n");
    return 0;
}