X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/7df5e2a15f784ab786f56ca25d739c8b546ccde8..032fe50c0297846a8d03eda505c9726f60a46501:/src/output.c diff --git a/src/output.c b/src/output.c index cf5e2ff..62c9c8f 100644 --- a/src/output.c +++ b/src/output.c @@ -22,6 +22,7 @@ #include "cdecl.h" #include "cdecl-internal.h" +#include "parse.h" #include "specstr.h" #define MIN(a, b) ((a) < (b) ? (a) : (b)) @@ -32,6 +33,7 @@ size_t cdecl__advance(struct output_state *dst, size_t amount) dst->dst += x; dst->dstlen -= x; + dst->accum += amount; return amount; } @@ -42,17 +44,15 @@ size_t cdecl__emit(struct output_state *dst, const char *src) return cdecl__advance(dst, rc); } -static size_t explain_spec(struct output_state *dst, struct cdecl_declspec *s) +static void explain_spec(struct output_state *dst, struct cdecl_declspec *s) { - size_t ret; + size_t rc; - ret = cdecl__emit(dst, spec_string(s->type)); + rc = cdecl__emit(dst, spec_string(s->type)); if (s->ident) { - ret += cdecl__emit(dst, " " + !ret); - ret += cdecl__emit(dst, s->ident); + cdecl__emit(dst, " " + !rc); + cdecl__emit(dst, s->ident); } - - return ret; } /* @@ -60,19 +60,21 @@ static size_t explain_spec(struct output_state *dst, struct cdecl_declspec *s) * listed in mask, which is the bitwise OR of the desired specifier kinds, are * printed. */ -size_t cdecl__emit_specs(struct output_state *dst, - struct cdecl_declspec *s, - unsigned mask) +const char *cdecl__emit_specs(struct output_state *dst, + struct cdecl_declspec *s, + unsigned mask) { - size_t ret = 0; + const char *sep = " "; + int empty = 1; for (; s; s = s->next) { if (!(s->type & mask)) continue; - ret += cdecl__emit(dst, " " + !ret); - ret += explain_spec(dst, s); + cdecl__emit(dst, sep + empty); + explain_spec(dst, s); + empty = 0; } - return ret; + return sep + empty; }