view test/tmp.c @ 33:8500dbb69dd9

bad macro processing. give up this method.
author kono
date Sun, 09 Feb 2003 23:17:23 +0900
parents d35df41eac69
children 64a4e3789fd2
line wrap: on
line source


main0(ac,av)
{
return ac;
}

main(ac,av)
int ac;
char *av[];
{
    register int i;
    register char *p;

    p = av[1];
    if (!p) return;
    i = p[1];
    p = p+i;
    printf("%d %s\n",i,p-i);
}