diff options
| author | J08nY | 2023-10-14 17:25:07 +0200 |
|---|---|---|
| committer | J08nY | 2023-10-14 17:25:07 +0200 |
| commit | e9f3d98e541397f61747640d45b59089fcb4003b (patch) | |
| tree | e59482d9a965ac7155e8734bc2cc69641b964e24 /src/io/output.c | |
| parent | a2329a559495573601c24659dc1924735362fe8f (diff) | |
| download | ecgen-e9f3d98e541397f61747640d45b59089fcb4003b.tar.gz ecgen-e9f3d98e541397f61747640d45b59089fcb4003b.tar.zst ecgen-e9f3d98e541397f61747640d45b59089fcb4003b.zip | |
Diffstat (limited to 'src/io/output.c')
| -rw-r--r-- | src/io/output.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/io/output.c b/src/io/output.c index 12b412d..a69b905 100644 --- a/src/io/output.c +++ b/src/io/output.c @@ -181,40 +181,40 @@ char *output_sjson_begin() { return output_malloc("[\n"); } char *output_sjson_end() { return output_malloc("]\n"); } -void output_f(FILE *out, curve_t *curve) { +void output_f(FILE *output, curve_t *curve) { char *s = output_s(curve); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o(curve_t *curve) { output_f(out, curve); } -void output_f_separator(FILE *out) { +void output_f_separator(FILE *output) { char *s = output_s_separator(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o_separator() { output_f_separator(out); } -void output_f_begin(FILE *out) { +void output_f_begin(FILE *output) { char *s = output_s_begin(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o_begin() { output_f_begin(out); } -void output_f_end(FILE *out) { +void output_f_end(FILE *output) { char *s = output_s_end(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } |
