/*====================================================================* * * void codelist (struct _code_ const list [], size_t size, char const * comma, FILE * fp); * * symbol.h * * print a list of code names on the specified output stream; * * Motley Tools by Charles Maier; * Copyright (c) 2001-2006 by Charles Maier Associates; * Licensed under the Internet Software Consortium License; * *--------------------------------------------------------------------*/ #ifndef CODELIST_SOURCE #define CODELIST_SOURCE #include #include "../tools/symbol.h" void codelist (struct _code_ const list [], size_t size, char const * comma, char const * quote, FILE * fp) { struct _code_ const * item = list; if (list) while ((size_t)(item - list) < size) { if (item > list) { fputs (comma, fp); } if ((quote) && (*quote)) { fputc (*quote++, fp); } fputs (item->name, fp); if ((quote) && (*quote)) { fputc (*quote--, fp); } item++; } return; } #endif