home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1997 #3 / amigamamagazinepolishissue03-1 / polski_aminet / michal_letowski / debuglib / include / clib / debug_protos.h
C/C++ Source or Header  |  1996-05-11  |  597b  |  26 lines

  1. #ifndef  CLIB_DEBUG_PROTOS_H
  2. #define  CLIB_DEBUG_PROTOS_H
  3.  
  4. /*
  5. **    $VER: debug_protos.h 37.1 (10.5.96)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15. /* Debugging support functions */
  16. LONG KStrCmp( STRPTR string1, STRPTR string2 );
  17. LONG KGetChar( VOID );
  18. LONG KMayGetChar( VOID );
  19. LONG KPutChar( LONG outChar );
  20. VOID KPutStr( STRPTR string);
  21. APTR KDoFmt( STRPTR format, STRPTR data, void (*putProc)(), APTR putData );
  22. APTR VKPrintf( STRPTR format, APTR data );
  23. APTR KPrintf(STRPTR format, ... );
  24.  
  25. #endif     /* CLIB_ALIB_PROTOS_H */
  26.