home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / RENAMR.ZIP / TESTC1.C < prev    next >
Encoding:
Text File  |  1991-08-31  |  533 b   |  9 lines

  1. int     TESTC1( ) /*** TESTC1.C - SAMPLE FOR DEMONSTRATING RENAMER    */
  2. {  int   iStatus, iRC = 0;          /* The iStatus reference is not   */
  3.    int   my_Routine ( int );        /* changed since ReNamer only     */
  4.    int   Alpha, Stat;               /* transforms whole symbols.      */
  5.    Alpha = 5;
  6.    Stat = my_Routine ( Alpha * 4 ); /* STAT - NOTE: This comment will */
  7.    return( iRC );                   /* not be changed since the case  */
  8. }                                   /* doesn't match.                 */
  9.