print64Lib.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* print64Lib.h - pretty print 64-bit integers library */
  2. /* Copyright 1999-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,20sep01,jkf  SPR#69031, common code for both AE & 5.x.
  7. 01c,29feb00,jkf  T3 merge, cleanup.
  8. 01b,31jul99,jkf  T2 merge, tidiness & spelling.
  9. 01a,29jun98,vld  written.
  10. */
  11. #ifndef __INTprint64Libh
  12. #define __INTprint64Libh
  13. #include "private/dosFsLibP.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /* function prototypes */
  18. IMPORT void print64Fine ( char * pHeader, fsize_t val, char * pFooter,
  19.   u_int radix );
  20. IMPORT void print64Row ( char * pHeader, fsize_t val, char * pFooter,
  21.                           u_int radix );
  22. IMPORT void print64Mult ( char * pHeader, fsize_t val, char * pFooter,
  23.                           u_int radix );
  24. IMPORT void print64 ( char * pHeader, fsize_t val, char * pFooter,
  25.                           u_int radix, u_int groupeSize );
  26. #ifdef __cplusplus
  27.     }
  28. #endif
  29.  
  30. #endif /* __INTprint64Libh */