home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mawk11as.zip / JMP.H < prev    next >
C/C++ Source or Header  |  1991-12-18  |  780b  |  33 lines

  1.  
  2. /********************************************
  3. jmp.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* $Log:    jmp.h,v $
  14.  * Revision 5.1  91/12/05  07:59:24  brennan
  15.  * 1.1 pre-release
  16.  * 
  17. */
  18.  
  19. #ifndef   JMP_H
  20. #define   JMP_H
  21.  
  22. void  PROTO(BC_new, (void) ) ;
  23. void  PROTO(BC_insert, (int, INST*) ) ;
  24. void  PROTO(BC_clear, (INST *, INST *) ) ;
  25. void  PROTO(code_push, (INST *, unsigned) ) ;
  26. unsigned  PROTO(code_pop, (INST *) ) ;
  27. void  PROTO(code_jmp, (int, INST *) ) ;
  28. void  PROTO(patch_jmp, (INST *) ) ;
  29.  
  30.  
  31. #endif  /* JMP_H  */
  32.  
  33.