File: data.c

package info (click to toggle)
icmake 6.30-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,360 kB
  • ctags: 1,415
  • sloc: ansic: 7,727; makefile: 1,465; sh: 244; asm: 126; cpp: 39
file content (67 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download
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[]) ARG ((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_empty,                      /* strlwr */
         fun_empty,                      /* strupr */
         fun_system,
         
         fun_empty,          /* strlen */
         fun_empty,          /* substr */
         fun_getpid,
    
         fun_empty,
         fun_empty,
         fun_empty,
         fun_empty,
         fun_empty,
         fun_empty,
         fun_empty,
    
         /* fun_hlt is non-existent.. */
         /* f_hlt used to mark unexisting functions */
     };