diff options
| author | J08nY | 2020-11-29 14:08:30 +0100 |
|---|---|---|
| committer | J08nY | 2020-11-29 14:08:30 +0100 |
| commit | e8578cfea272cfd0df7da6cd23646d859695552d (patch) | |
| tree | 1cf8a21c59299ebe8a73e38225f9abee1b425ab4 /src/io/output.h | |
| parent | 2b643998d6602855b91e21ac3dee47ed80f29db9 (diff) | |
| download | ecgen-e8578cfea272cfd0df7da6cd23646d859695552d.tar.gz ecgen-e8578cfea272cfd0df7da6cd23646d859695552d.tar.zst ecgen-e8578cfea272cfd0df7da6cd23646d859695552d.zip | |
Diffstat (limited to 'src/io/output.h')
| -rw-r--r-- | src/io/output.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/io/output.h b/src/io/output.h index 1bf9aee..f68acfc 100644 --- a/src/io/output.h +++ b/src/io/output.h @@ -110,7 +110,7 @@ char *output_sjson_end(); * @param curve * @return */ -char *(*output_s)(curve_t *curve); +extern char *(*output_s)(curve_t *curve); /** * @brief Output curve to a FILE *out in configured format. @@ -129,7 +129,7 @@ void output_o(curve_t *curve); * @brief Output separator to a malloc'ed string in configured format. * @return */ -char *(*output_s_separator)(); +extern char *(*output_s_separator)(); /** * @brief Output separator to a FILE *out in configured format. @@ -146,7 +146,7 @@ void output_o_separator(); * @brief Output header to a malloc'ed string in configured format. * @return */ -char *(*output_s_begin)(); +extern char *(*output_s_begin)(); /** * @brief Output header to a FILE *out in configured format. @@ -163,7 +163,7 @@ void output_o_begin(); * @brief Output footer to a malloc'ed string in configured format. * @return */ -char *(*output_s_end)(); +extern char *(*output_s_end)(); /** * @brief Output footer to a FILE *out in configured format. |
