home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / Log Library 1.01 / LogLibComponent ƒ / Libsprintf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-10  |  344 b   |  27 lines  |  [TEXT/KAHL]

  1. /*
  2.     Libsprintf.h
  3.     
  4.     Header file for Libsprintf.c
  5.     
  6. */
  7.  
  8. #pragma once
  9.  
  10. #ifndef __H_Libsprintf__
  11. #define __H_Libsprintf__
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. int libsprintf(char *fp, const char *fmt,...);
  18. void libfixnl(char* buf);
  19. char libstrlen(char* buf);
  20. void * libmemchr(const void *s, int c,long n);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif
  27.