DEBSOURCES
Skip Quicknav
sources / pgplot5 / 5.2.2-19.7 / sys_openstep / f2c_src / iand.c
1234567891011
int iand_ (a,b) int *a; int *b; { static int res; res = (*a & *b); /* printf ("iand result: %d\n",res); */ return (res); }