-
Notifications
You must be signed in to change notification settings - Fork 0
/
gregg_test.c
60 lines (47 loc) · 1.99 KB
/
gregg_test.c
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
/*============================---(source-start)---============================*/
#include "gregg.h"
char unit_answer [LEN_FULL];
/*============================--------------------============================*/
/*===---- testing support ----===*/
/*============================--------------------============================*/
void o___SUPPORT________________o (void) {;}
char PROG_wiper (void) { return 1; }
/*============================--------------------============================*/
/*===---- unit testing ----===*/
/*============================--------------------============================*/
void o___UNITTEST_______________o (void) {;}
char /*-> set up programgents/debugging ------[ light [uz.320.011.05]*/ /*-[00.0000.00#.#]-*/ /*-[--.---.---.--]-*/
PROG__unit_quiet (void)
{
char x_narg = 1;
char *x_args [1] = { "gregg" };
PROG_urgents (x_narg, x_args);
PROG_startup (x_narg, x_args);
my.dict = '-';
return 0;
}
char /*-> set up programgents/debugging ------[ light [uz.320.011.05]*/ /*-[00.0000.00#.!]-*/ /*-[--.---.---.--]-*/
PROG__unit_loud (void)
{
char x_narg = 2;
char *x_args [2] = { "gregg_unit", "@@kitchen" };
PROG_urgents (x_narg, x_args);
yURG_by_name ("raw" , YURG_ON);
yURG_by_name ("avg" , YURG_ON);
yURG_by_name ("calc" , YURG_ON);
yURG_by_name ("match" , YURG_ON);
yURG_by_name ("data" , YURG_ON);
yURG_by_name ("ymode" , YURG_ON);
yURG_by_name ("ykeys" , YURG_ON);
yURG_by_name ("yview" , YURG_ON);
yURG_by_name ("yparse" , YURG_ON);
PROG_startup (x_narg, x_args);
my.dict = '-';
return 0;
}
char /*-> set up program urgents/debugging ---[ light [uz.210.001.01]*/ /*-[00.0000.00#.!]-*/ /*-[--.---.---.--]-*/
PROG__unit_end (void)
{
PROG_shutdown ();
return 0;
}