1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*====================================================================*
- *
- * void termlist (struct _term_ const list [], size_t size, char const * comma, FILE * fp);
- *
- * symbol.h
- *
- * print a list of terms and texts on the specified output stream;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright (c) 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #ifndef TERMLIST_SOURCE
- #define TERMLIST_SOURCE
- #include <stdio.h>
- #include "../tools/symbol.h"
- void termlist (struct _term_ const list [], size_t size, char const * comma, char const * quote, FILE * fp)
- {
- struct _term_ const * item = list;
- if (list) while ((size_t) (item - list) < size)
- {
- if (item > list)
- {
- fprintf (fp, "%s", comma);
- }
- if ((quote) && (* quote))
- {
- putc (* quote++, fp);
- }
- fprintf (fp, "%s", item->term);
- if ((quote) && (* quote))
- {
- putc (* quote--, fp);
- }
- fprintf (fp, " or ");
- if ((quote) && (* quote))
- {
- putc (* quote++, fp);
- }
- fprintf (fp, "%s", item->text);
- if ((quote) && (* quote))
- {
- putc (* quote--, fp);
- }
- item++;
- }
- return;
- }
- #endif
|