termlist.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*====================================================================*
  2. *
  3. * void termlist (struct _term_ const list [], size_t size, char const * comma, FILE * fp);
  4. *
  5. * symbol.h
  6. *
  7. * print a list of terms and texts on the specified output stream;
  8. *
  9. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  10. * Copyright (c) 2001-2006 by Charles Maier Associates;
  11. * Licensed under the Internet Software Consortium License;
  12. *
  13. *--------------------------------------------------------------------*/
  14. #ifndef TERMLIST_SOURCE
  15. #define TERMLIST_SOURCE
  16. #include <stdio.h>
  17. #include "../tools/symbol.h"
  18. void termlist (struct _term_ const list [], size_t size, char const * comma, char const * quote, FILE * fp)
  19. {
  20. struct _term_ const * item = list;
  21. if (list) while ((size_t) (item - list) < size)
  22. {
  23. if (item > list)
  24. {
  25. fprintf (fp, "%s", comma);
  26. }
  27. if ((quote) && (* quote))
  28. {
  29. putc (* quote++, fp);
  30. }
  31. fprintf (fp, "%s", item->term);
  32. if ((quote) && (* quote))
  33. {
  34. putc (* quote--, fp);
  35. }
  36. fprintf (fp, " or ");
  37. if ((quote) && (* quote))
  38. {
  39. putc (* quote++, fp);
  40. }
  41. fprintf (fp, "%s", item->text);
  42. if ((quote) && (* quote))
  43. {
  44. putc (* quote--, fp);
  45. }
  46. item++;
  47. }
  48. return;
  49. }
  50. #endif