exop.h 280 B

1234567891011
  1. #pragma once
  2. #include <stddef.h>
  3. /** retrieve a string representation of a lexer token
  4. *
  5. * \param id The numerical identifier of the sought token as an offset from
  6. * MINTOKEN
  7. * \return The string name of the token or NULL if id is invalid
  8. */
  9. const char *exop(size_t id);