home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / gfx / misc / imagefx_sdk / sas / scanlib / learn.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-15  |  159 b   |  12 lines

  1. #include <scan/modall.h>
  2. #include <stdarg.h>
  3.  
  4. void Learn (char *fmt, ...)
  5. {
  6.    va_list va;
  7.  
  8.    va_start(va, fmt);
  9.    LearnA(fmt, (long *)va);
  10.    va_end(va);
  11. }
  12.