You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int bacio_
(int * mode, int * start, int *newpos, int * size, int * no,
int * nactual, int * fdes, const char *fname, char *datary,
int namelen, int datanamelen) {
and
int baciol_
(int * mode, long int * start, long int *newpos, int * size, long int * no,
long int * nactual, int * fdes, const char *fname, char *datary,
int namelen, int datanamelen) {
The difference between these functions is that the start, newpos, no, and nactual are long in baciol() and int in bacio().
Otherwise these functions are the same.
In fact, with a few code changes, we could use the baciol() function everywhere, and eliminate the bacio() function.
The text was updated successfully, but these errors were encountered:
We have two functions that are mostly identical:
and
The difference between these functions is that the start, newpos, no, and nactual are long in baciol() and int in bacio().
Otherwise these functions are the same.
In fact, with a few code changes, we could use the baciol() function everywhere, and eliminate the bacio() function.
The text was updated successfully, but these errors were encountered: