symbol2str.h 396 B

123456789101112131415
  1. /*
  2. * The Amsterdam Compiler Kit
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef H_SYMBOL2STR_H
  6. #define H_SYMBOL2STR_H
  7. /* A lot of component use a version of this function, there is currently no header file
  8. * that contain it, and all use the same prototype as they are all generated from the same
  9. * generator.
  10. */
  11. char *symbol2str(int tok);
  12. #endif