forked from flightaware/tclreadline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tclreadline.h.in
36 lines (29 loc) · 937 Bytes
/
tclreadline.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* ================================================================== *
* FILE: tclreadline.h.in
* $Id$
* ---
* tclreadline -- gnu readline for tcl
* https://github.com/flightaware/tclreadline/
* Copyright (c) 1998 - 2014, Johannes Zellner <[email protected]>
* This software is copyright under the BSD license.
* ================================================================== */
#ifndef TCLREADLINE_H_
#define TCLREADLINE_H_
#include <tcl.h>
#define TCLRL_LIBRARY "@TCLRL_DIR@"
/* VERSION STRINGS */
#define TCLRL_VERSION_STR "@VERSION@"
#define TCLRL_PATCHLEVEL_STR "@PATCHLEVEL_STR@"
/* VERSION NUMBERS */
#define TCLRL_MAJOR @MAJOR@
#define TCLRL_MINOR @MINOR@
#define TCLRL_PATCHLEVEL @PATCHLEVEL@
#ifdef __cplusplus
extern "C" {
#endif
int Tclreadline_Init(Tcl_Interp *interp);
int Tclreadline_SafeInit(Tcl_Interp *interp);
#ifdef __cplusplus
}
#endif
#endif /* TCLREADLINE_H_ */