home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / CLISP-2.LHA / CLISP960530-ki.lha / ffcall / vacall / README < prev    next >
Encoding:
Text File  |  1996-04-15  |  1.8 KB  |  65 lines

  1. vacall - C functions called with variable arguments
  2.  
  3. This library allows C functions to be called with variable arguments and
  4. to return variable return values. This is much like the varargs(3) facility,
  5. but also allows the return value to be specified at run time.
  6.  
  7. A typical use is the implementation of call-back functions in embedded
  8. interpreters.
  9.  
  10.  
  11. Installation instructions:
  12.  
  13.         ./configure
  14.         make
  15.         make check
  16.         make install
  17.  
  18.  
  19. Files in this package:
  20.  
  21.     Documentation:
  22.  
  23.         README          this text
  24.         COPYING         free software license
  25.         PLATFORMS       list of supported platforms
  26.         vacall.3        manual page in Unix man format
  27.         vacall.man      manual page
  28.         vacall.html     manual page in HTML format
  29.  
  30.     Source:
  31.  
  32.         vacall.h.in     master for main include file vacall.h
  33.         vacall-*.c      source for the interface function
  34.         vacall-*.[sS]   its translation to assembly language
  35.         misc.c          auxiliary functions
  36.         tests.c         test program
  37.  
  38.     Installation:
  39.  
  40.         configure       configuration script
  41.         configure.in    autoconf-2.2 source for the configuration script
  42.         ../autoconf/*   auxiliary configuration scripts
  43.         Makefile.in     Makefile master
  44.         config.h.in     config.h master
  45.  
  46.     Porting:
  47.  
  48.         Makefile.devel  developer's Makefile
  49.         underscore.h    used to build the *.S files
  50.  
  51.  
  52. Copyright notice:
  53.  
  54. Copyright 1995 Bruno Haible, <haible@ma2s2.mathematik.uni-karlsruhe.de>
  55.  
  56. This is free software distributed under the GNU General Public Licence
  57. described in the file COPYING. Contact the author if you don't have this
  58. or can't live with it. There is ABSOLUTELY NO WARRANTY, explicit or implied,
  59. on this software.
  60.  
  61.  
  62. Bruno Haible
  63. <haible@ma2s2.mathematik.uni-karlsruhe.de>
  64.  
  65.