summaryrefslogtreecommitdiff
path: root/xs_io.h
blob: 523d2070a84546cf4f06fd0e75c734c0a2e52a99 (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
76
77
78
79
80
81
82
83
84
85
86
/* copyright (c) 2022 grunfink - MIT license */

#ifndef _XS_IO_H

#define _XS_IO_H

d_char *xs_readall(FILE *f);
d_char *xs_readline(FILE *f);
d_char *xs_read(FILE *f, int size);


#ifdef XS_IMPLEMENTATION

d_char *xs_readall(FILE *f)
/* reads the rest of the file into a string */
{
    d_char *s;
    char tmp[1024];

    errno = 0;

    /* create the new string */
    s = xs_str_new(NULL);

    while (fgets(tmp, sizeof(tmp), f))
        s = xs_str_cat(s, tmp);

    return s;
}


d_char *xs_readline(FILE *f)
/* reads a line from a file */
{
    d_char *s = NULL;

    errno = 0;

    /* don't even try on eof */
    if (!feof(f)) {
        int c;

        s = xs_str_new(NULL);

        while ((c = fgetc(f)) != EOF) {
            unsigned char rc = c;

            s = xs_append_m(s, (char *)&rc, 1);

            if (c == '\n')
                break;
        }
    }

    return s;
}


d_char *xs_read(FILE *f, int size)
/* reads up to size bytes from f */
{
    d_char *s;

    errno = 0;

    s = xs_str_new(NULL);

    while (size != 0 && !feof(f)) {
        char tmp[2048];
        int n, r;

        if ((n = sizeof(tmp)) > size)
            n = size;

        r = fread(tmp, 1, n, f);
        s = xs_append_m(s, tmp, r);

        size -= r;
    }

    return s;
}

#endif /* XS_IMPLEMENTATION */

#endif /* _XS_IO_H */