summaryrefslogtreecommitdiff
path: root/Build/source/texk/gregorio/gregorio-src/src/encode_utf8strings.c
blob: e2e0bdb68db704f75e5863a963166828eed83c7e (plain)
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
74
75
/*
 * Utility program to convert utf8strings.h.in into utf8strings.h
 *
 * Copyright (C) 2015-2021 The Gregorio Project (see CONTRIBUTORS.md)
 *
 * This file is part of Gregorio.
 *
 * Gregorio is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Gregorio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Gregorio.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <string.h>
#include <errno.h>

int main(int argc, char **argv)
{
    char buf[5];
    FILE *input, *output;
    int c;

    if (argc != 3) {
        fprintf(stderr, "Incorrect arguments\n");
        return -1;
    }

    input = fopen(argv[1], "rb");
    if (input == NULL) {
        fprintf(stderr, "Error opening %s: %s\n", argv[1], strerror(errno));
        return -1;
    }

    output = fopen(argv[2], "wb");
    if (output == NULL) {
        fprintf(stderr, "Error creating %s: %s\n", argv[2], strerror(errno));
        return -1;
    }

    while ((c = fgetc(input)) != EOF) {
        if (c & 0x80) {
            snprintf(buf, sizeof(buf), "\\%03o", c);
            if (fwrite(buf, sizeof(buf) - sizeof(char), 1, output) != 1) {
                fprintf(stderr, "Error writing %s: %s\n", argv[2],
                        strerror(errno));
                return -1;
            }
        } else {
            if (fputc(c, output) != c) {
                fprintf(stderr, "Error writing %s: %s\n", argv[2],
                        strerror(errno));
                return -1;
            }
        }
    }

    if (fclose(output) != 0) {
        fprintf(stderr, "Error closing %s: %s\n", argv[2], strerror(errno));
        return -1;
    }
    if (fclose(input) != 0) {
        fprintf(stderr, "Error closing %s: %s\n", argv[1], strerror(errno));
        return -1;
    }
    return 0;
}