home *** CD-ROM | disk | FTP | other *** search
- #include <extend.h>
- #include "../rlibc/rlibc.h"
-
- CLIPPER dfPrintPer ( void )
- {
- if (PCOUNT<2)
- {
- _retni(R4);
- return;
- }
- if (_parinfo(1)!=CHARACTER || _parinfo(2)!=CHARACTER)
- {
- _retni(R4);
- return;
- }
- _retni(DFPrintPeriod(_parc(1), _parc(2)));
- }
-
- CLIPPER dfSendPSt ( void )
- {
- if (PCOUNT<2)
- {
- _retni(R4);
- return;
- }
- if (_parinfo(1)!=CHARACTER || _parinfo(2)!=CHARACTER )
- {
- _retni(R4);
- return;
- }
- _retni(DFSendPeriodStart(_parc(1), _parc(2) ));
- }
-
- CLIPPER dfSendPCo ( void )
- {
- char line[19];
- int rvalue;
-
- if (PCOUNT<1)
- {
- _retni(R4);
- return;
- }
- if (_parinfo(1)!=(MPTR|CHARACTER) )
- {
- _retni(R4);
- return;
- }
-
- rvalue = DFSendPeriodCont(line);
- _storclen( line, 18, 1 );
- _retni( rvalue );
- }
-
- CLIPPER dfPrintDay ( void )
- {
- _retni(DFPrintDay());
- }