home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / iconv.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  975b  |  35 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _ICONV_H
  12. #define _ICONV_H
  13. #ident    "@(#)sgs-head:common/head/iconv.h    1.4"
  14.  
  15. #ifndef _SIZE_T
  16. #   define _SIZE_T
  17.     typedef unsigned int    size_t;
  18. #endif
  19.  
  20. typedef struct _t_iconv    *iconv_t;
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. extern iconv_t    iconv_open(const char *, const char *);
  27. extern size_t    iconv(iconv_t, char **, size_t *, char **, size_t *);
  28. extern int    iconv_close(iconv_t);
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.  
  34. #endif /*_ICONV_H*/
  35.