|
The mapping between the C Library Functions and the AS/400 runtime implementation is documented for the IFS functions in the QSYSINC/H file, member IFS:
Technically, it's split across the STDIO member and the IFS member. In the STDIO member, you'll see:
#ifdef __IFS_IO__ #include <ifs.h> #endif /* ifdef __IFS_IO__ */So that code causes it to only use the IFS member if __IFS_IO__ is defined (which is defined by setting SYSIFCOPT(*IFSIO) on the CRTCMOD or CRTBNDC command)
In that same member (STDIO) you'll see that it also maps fopen() to something else when __IFS_IO__ is not defined.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.