File: data.c

package info (click to toggle)
icmake 7.11-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,804 kB
  • ctags: 1,541
  • sloc: ansic: 7,755; makefile: 6,063; sh: 359; cpp: 83
file content (67 lines) | stat: -rw-r--r-- 1,337 bytes parent folder | download | duplicates (4)
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
62
63
64
65
66
67
#include "builtin.ih"

VAR_            reg;

int echo = 1;

char           *arghead;
char           *argtail;
char           *cmdhead;
char           *cmdtail;

void (*builtinfun[])(void) =
     {
         fun_arg_head,
         fun_arg_tail,
         fun_ascii_int,
         fun_ascii_str,
    
         fun_c_base,
         fun_chdir,
         fun_c_ext,
         fun_cmd_head,
         fun_cmd_tail,
         fun_c_path,
    
         fun_echo,
         fun_element,
         fun_exec,
         fun_exec,                       /* dummy for compiler-used */
         fun_exists,                     /*     fun_execute */
    
         fun_fields,
         fun_fgets,
         fun_fprintf,
    
         fun_g_base,         fun_getch,
         fun_gets,
         fun_g_ext,
         fun_g_path,
    
         fun_makelist,
    
         fun_printf,
         fun_putenv,
    
         fun_sizeoflist,
         fun_stat,
         fun_str_el,
         fun_strlwr,
         fun_strupr,
         fun_system,
         
         fun_strlen,
         fun_strfind,
         fun_getpid,
    
         fun_substr,
         fun_getenv,
         fun_backtick,
         fun_empty,
         fun_empty,
         fun_empty,
         fun_empty,
    
         /* fun_hlt is non-existent.. */
         /* f_hlt used to mark unexisting functions */
     };