home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / cover / test2.c < prev   
Encoding:
C/C++ Source or Header  |  1996-12-24  |  98 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. int test2(int x)
  4. {
  5.    if(x == 10)
  6.       return(10);
  7.    else
  8.       return(0);
  9. }