home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Palm / libc / sscanf.c < prev    next >
C/C++ Source or Header  |  2000-12-21  |  239b  |  15 lines

  1. /* 
  2.    sscanf stub
  3.  
  4.    Jeffery D. Collins
  5.  
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. int sscanf(const char *buf, const char *fmt, ... ){
  11.      /* do nothing but return EOF (could alternatively return a 0 
  12.     to indicate an early failure. */
  13.      return EOF;
  14. }
  15.