etc.h 940 B

12345678910111213141516171819202122232425
  1. #ifndef _etc_h_INCLUDED_
  2. #define _etc_h_INCLUDED_
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. /*===========================================================================*/
  6. /* "true", "false" の文字列を返す */
  7. /*===========================================================================*/
  8. char * wonx_true_false(int b);
  9. /*===========================================================================*/
  10. /* 文字の出力 */
  11. /*===========================================================================*/
  12. int wonx_print_character(FILE * fp, unsigned char c);
  13. /*===========================================================================*/
  14. /* 10進→16進文字への変換 */
  15. /*===========================================================================*/
  16. char wonx_dec_to_hex(int dec);
  17. #endif