blob: 6c7ef05e09ff2e1619c7f36172c494054e97fad7 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/local/bin/sciteco -8m
!*
* ./symbols-extract.tes [-p <prefix pattern list>] -n <SymbolList object> [--] \
* <output file> <input header>
*!
0,2EJ !* FIXME: Memory limiting is too slow *!
:EIQ[$SCITECOPATH]/getopt.tes
EIQ[$SCITECOPATH]/string.tes
!* read commandline arguments *!
[getopt.p]
[optstring]p:n:
M[getopt]U#ou Q#ou"< Invalid command-line^J 1 ' Q#ou+1U#in
!* copy all defines in input file beginning with prefix *!
EBN[\#in] <S#defineS[[Q[getopt.p]]M ]; 1:Xa 10:a> EF
!* sort all defines *!
Ga ZJB 0,.M[qsort] J
!* format as C/C++ array *!
I/*
* AUTOGENERATED FROM Q[\#in]
* DO NOT EDIT
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib.h>
#include "Q[\#in]"
#include "sciteco.h"
#include "symbols.h"
static const teco_symbol_entry_t entries[] = {^J
<
.,LR.Xa 0KK
I#ifdef Qa^J^I{"Qa", Qa},^J#endif^J
.-Z;>
I};
static void __attribute__((constructor))
teco_symbols_init(void)
{
teco_symbol_list_init(&Q[getopt.n], entries, G_N_ELEMENTS(entries), FALSE);
}
static void TECO_DEBUG_CLEANUP
teco_cmdline_cleanup(void)
{
teco_symbol_list_clear(&Q[getopt.n]);
}
!* write output file *!
2EL EWQ[\#ou]
EX
|