Differences From:
File
src/th.h
part of check-in
[4ee9e31a2d]
- Add the TH1 code to the source tree and makefile. But do not yet make
any calls to TH1.
by
drh on
2008-02-13 15:04:49.
[view]
To:
File
src/th.h
part of check-in
[13e16c824a]
- Create the interface between TH1 and the rest of fossil.
Subscript is still being used, though. This is a preparatory
step toward cutting over to TH1.
by
drh on
2008-02-13 16:21:58.
Also file
src/th.h
part of check-in
[588bb7cd73]
- Merged to ed26056bb5.
by
aku on
2008-02-24 18:50:35.
[view]
@@ -3,11 +3,8 @@
** Language (TH) interpreter used to create test cases for SQLiteRT. The
** interpreted language and API are both based on Tcl.
*/
-#ifndef __TH_H
-#define __TH_H
-
typedef unsigned char uchar;
/*
** Before creating an interpreter, the application must allocate and
@@ -186,7 +183,4 @@
int Th_WrongNumArgs(Th_Interp *interp, const char *zMsg);
typedef struct Th_SubCommand {char *zName; Th_CommandProc xProc;} Th_SubCommand;
int Th_CallSubCommand(Th_Interp*,void*,int,const uchar**,int*,Th_SubCommand*);
-
-#endif /* ifndef __TH_H */
-