snac2/xs_io.h

99 lines
1.6 KiB
C
Raw Normal View History

2022-09-19 21:41:11 +03:00
/* 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);
2022-09-28 10:29:09 +03:00
d_char *xs_read(FILE *f, int *size);
2022-09-19 21:41:11 +03:00
#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;
}
2022-09-28 10:29:09 +03:00
d_char *xs_read(FILE *f, int *sz)
2022-09-19 21:41:11 +03:00
/* reads up to size bytes from f */
{
d_char *s = NULL;
int size = *sz;
int rdsz = 0;
2022-09-19 21:41:11 +03:00
errno = 0;
2022-09-28 10:29:09 +03:00
while (size > 0 && !feof(f)) {
char tmp[4096];
2022-09-19 21:41:11 +03:00
int n, r;
if ((n = sizeof(tmp)) > size)
n = size;
r = fread(tmp, 1, n, f);
/* open room */
s = xs_realloc(s, rdsz + r);
/* copy read data */
memcpy(s + rdsz, tmp, r);
2022-09-28 10:29:09 +03:00
rdsz += r;
size -= r;
2022-09-19 21:41:11 +03:00
}
2022-10-16 20:58:59 +03:00
/* null terminate, just in case it's treated as a string */
s = xs_realloc(s, rdsz + 1);
s[rdsz] = '\0';
2022-09-28 10:29:09 +03:00
*sz = rdsz;
2022-09-19 21:41:11 +03:00
return s;
}
#endif /* XS_IMPLEMENTATION */
#endif /* _XS_IO_H */