X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/d5c6a2e654422894c528cda52e951739a6b66ae6..1b96e9580714d7a677d10a8e286b3f8a2bddc6f5:/src/declare.c diff --git a/src/declare.c b/src/declare.c index 119d2b2..c5a1f23 100644 --- a/src/declare.c +++ b/src/declare.c @@ -1,6 +1,6 @@ /* * Render C declarations. - * Copyright © 2011, 2021, 2023 Nick Bowler + * Copyright © 2011, 2021, 2023-2024 Nick Bowler * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,7 +19,6 @@ #include #include #include -#include #include #include "cdecl.h" @@ -30,35 +29,37 @@ declare_declarator(struct output_state *dst, struct cdecl_declarator *d); static void declare_decl(struct output_state *dst, struct cdecl *decl) { + struct cdecl_declarator *d = decl->declarators; const char *sep; sep = cdecl__emit_specs(dst, decl->specifiers, -1); - if (decl->declarators->type != CDECL_DECL_NULL) + if (d->type != CDECL_DECL_NULL) cdecl__emit(dst, sep); - declare_declarator(dst, decl->declarators); + declare_declarator(dst, d); } static void declare_postfix_child(struct output_state *dst, struct cdecl_declarator *d) { - if (d->type == CDECL_DECL_POINTER) - cdecl__emit(dst, "("); + bool need_parens = (d->type == CDECL_DECL_POINTER); + if (need_parens) cdecl__emit(dst, "("); declare_declarator(dst, d); - - if (d->type == CDECL_DECL_POINTER) - cdecl__emit(dst, ")"); + if (need_parens) cdecl__emit(dst, ")"); } -static void declare_pointer(struct output_state *dst, struct cdecl_pointer *p) +static void declare_pointer(struct output_state *dst, struct cdecl_declarator *d) { - struct cdecl_declspec *q = p->qualifiers; + struct cdecl_declspec *q = d->u.pointer.qualifiers; if (q) { + const char *sep; + cdecl__emit(dst, "* "); - cdecl__emit_specs(dst, q, -1); - cdecl__emit(dst, " "); + sep = cdecl__emit_specs(dst, q, -1); + if (d->child->type != CDECL_DECL_NULL) + cdecl__emit(dst, sep); } else { cdecl__emit(dst, "*"); } @@ -72,8 +73,7 @@ static void declare_array(struct output_state *dst, struct cdecl_array *a) const char *s = a->vla[0] ? a->vla : "*"; cdecl__emit(dst, s); } else { - size_t rc = snprintf(dst->dst, dst->dstlen, "%.0" PRIuMAX, a->length); - cdecl__advance(dst, rc); + cdecl__emit_uint(dst, a->length); } cdecl__emit(dst, "]"); @@ -109,7 +109,7 @@ declare_declarator(struct output_state *dst, struct cdecl_declarator *d) cdecl__emit(dst, d->u.ident); break; case CDECL_DECL_POINTER: - declare_pointer(dst, &d->u.pointer); + declare_pointer(dst, d); break; /* * Arrays and functions are special: since they are postfix,