This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| int C2F() | scigetarg (int *n, char *str, long int ln) |
| int C2F() | sciiargc (void) |
TODO : comment
| n | ||
| str | ||
| ln |
Definition at line 24 of file getarg-hpux.c.
References C2F, getarg(), ln, n, sci_getarg(), and str.
Referenced by create_argv().
00025 { 00026 #ifdef __MSC_VER 00027 sci_getarg(n,str,ln); /* see wsci/winmain.c */ 00028 #else 00029 getarg_(n,str,ln); 00030 #endif 00031 return 0; 00032 }
Here is the call graph for this function:

Here is the caller graph for this function:

| int C2F() sciiargc | ( | void | ) |
TODO : comment
Definition at line 13 of file getarg-hpux.c.
References C2F, iargc(), Max, sci_iargc(), and val.
Referenced by create_argv().
00014 { 00015 int val; 00016 #ifdef _MSC_VER 00017 val=sci_iargc(); /* see wsci/winmain.c */ 00018 #else 00019 val=iargc_(); 00020 #endif 00021 return Max(val,0); 00022 }
Here is the call graph for this function:

Here is the caller graph for this function:

1.5.1