#include #include #include "err_mac.h" #include "str_mac.h" #include "trace_mac.h" static int tk_debug=0; int main(int argc, char **argv) { char *s; if (argc < 3) { M_EXIT(FAILURE,"usage: %s string1 string2 [debug]\n",argv[0]); } if (argc > 3) { if (sscanf(argv[3], "%d", &tk_debug) != 1) tk_debug = 0; } PING(1); MSG(1,"Just saying hello.\n"); DUMP(1,tk_debug,"%d"); printf(">%s< cat >%s< = >%s<\n", argv[1], argv[2], STRCAT(argv[1], argv[2]) ); M_EXIT(SUCCESS, "Successful Exit\n"); }