teapot-spreadsheet/src/common/func.h
Glen Whitney ea230efc23 Move source code into subdirectory
Also removed a stray copy of the automatically generated config.h which
  had somehow gotten into the distribution. Closes #36.
2019-07-27 01:35:44 -04:00

15 lines
171 B
C

#ifndef FUNC_H
#define FUNC_H
#include "scanner.h"
typedef struct
{
const char name[20];
Token (*func)(int, const Token[]);
} Tfunc;
extern Tfunc tfunc[];
#endif