#ifndef NON_UNIX_STDIO #define _INCLUDE_POSIX_SOURCE /* for HP-UX */ #define _INCLUDE_XOPEN_SOURCE /* for HP-UX */ #include #include #endif #include "f2c.h" #include "fio.h" VOID #ifdef KR_headers g_char(a,alen,b) char *a,*b; ftnlen alen; #else g_char(char *a, ftnlen alen, char *b) #endif { char *x = a + alen, *y = b + alen; for(;; y--) { if (x <= a) { *b = 0; return; } if (*--x != ' ') break; } *y-- = 0; do *y-- = *x; while(x-- > a); } VOID #ifdef KR_headers b_char(a,b,blen) char *a,*b; ftnlen blen; #else b_char(char *a, char *b, ftnlen blen) #endif { int i; for(i=0;i