symbol.h.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version='1.0' encoding='iso-8859-1'?>
  2. <!doctype html public '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
  3. <html xmlns='http://www.w3c.org/1999/xhtml' lang='en-us'>
  4. <head>
  5. <title>
  6. symbol.h
  7. </title>
  8. <meta http-equiv='content-type' content='text/html;iso-8859-1'/>
  9. <meta name='generator' content='motley-tools 1.9.4 13:40:33 Feb 18 2015'/>
  10. <meta name='author' content='cmaier@cmassoc.net'/>
  11. <meta name='robots' content='noindex,nofollow'/>
  12. <link href='toolkit.css' rel='stylesheet' type='text/css'/>
  13. </head>
  14. <body>
  15. <div class='headerlink'>
  16. [<a href='stdint.h.html' title=' stdint.h '>PREV</a>]
  17. [<a href='toolkit.html' title=' Index '>HOME</a>]
  18. [<a href='time.h.html' title=' time.h '>NEXT</a>]
  19. </div>
  20. <pre>
  21. /*====================================================================*
  22. *
  23. * symbol.h - symbol table definitions and declarations;
  24. *
  25. * this file is a subset of the original with some additions not in
  26. * the original;
  27. *
  28. * Motley Tools by Charles Maier &lt;cmaier@cmassoc.net&gt;;
  29. * Copyright 2001-2006 by Charles Maier Associates;
  30. * Licensed under the Internet Software Consortium License;
  31. *
  32. *--------------------------------------------------------------------*/
  33. #ifndef SYMBOL_HEADER
  34. #define SYMBOL_HEADER
  35. /*====================================================================*
  36. * system header files;
  37. *--------------------------------------------------------------------*/
  38. #include &lt;stdio.h&gt;
  39. /*====================================================================*
  40. * custom header files;
  41. *--------------------------------------------------------------------*/
  42. #include &quot;../tools/types.h&quot;
  43. /*====================================================================*
  44. * functions;
  45. *--------------------------------------------------------------------*/
  46. char const * synonym (char const * term, const struct _term_ list [], size_t size);
  47. void assist (char const * name, char const * type, const struct _code_ list [], size_t size);
  48. signed lookup (char const * name, struct _code_ const list [], size_t size);
  49. char const * reword (code_t code, struct _code_ const list [], size_t size);
  50. void expect (const struct _code_ list [], size_t size, FILE *);
  51. char const * typename (struct _type_ const list [], size_t size, type_t type, char const * name);
  52. char const * codename (struct _code_ const list [], size_t size, code_t code, char const * name);
  53. void codelist (const struct _code_ list [], size_t size, char const * comma, char const * quote, FILE *);
  54. void typelist (const struct _type_ list [], size_t size, char const * comma, char const * quote, FILE *);
  55. void termlist (const struct _term_ list [], size_t size, char const * comma, char const * quote, FILE *);
  56. signed getargv (signed argc, char const * argv []);
  57. /*====================================================================*
  58. *
  59. *--------------------------------------------------------------------*/
  60. #endif
  61. </pre>
  62. <div class='footerlink'>
  63. [<a href='stdint.h.html' title=' stdint.h '>PREV</a>]
  64. [<a href='toolkit.html' title=' Index '>HOME</a>]
  65. [<a href='time.h.html' title=' time.h '>NEXT</a>]
  66. </div>
  67. </body>
  68. </html>