~vcs-imports/gmime/master

« back to all changes in this revision

Viewing changes to gmime/gmime-iconv-utils.h

  • Committer: Jeffrey Stedfast
  • Author(s): Jeffrey Stedfast
  • Date: 2004-02-27 01:25:58 UTC
  • Revision ID: git-v1:2ca4d3eaca7cc0ce213eb8d6fe2ccb935872a007
Moved here from gmime/

2004-02-26  Jeffrey Stedfast  <fejj@ximian.com>

        * util/*.[c,h]: Moved here from gmime/

        * gmime/*.h: Fixed #includes

        * gmime/cache.[c,h]: Moved to util/

        * gmime/gtrie.[c,h]: Moved to util/

        * gmime/list.[c,h]: Moved to util/

        * gmime/md5-utils.[c,h]: Moved to util/

        * gmime/memchunk.[c,h]: Moved to util/

        * gmime/url-scanner.[c,h]: Moved to util/

        * gmime/gmime-parser.c: Don't use gobject macro casts.

        * gmime/gmime-filter-md5.c: Move the MD5Context into a private
        structure so that we don't need to install md5-utils.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef __GMIME_ICONV_UTILS_H__
25
25
#define __GMIME_ICONV_UTILS_H__
26
26
 
 
27
#include <sys/types.h>
 
28
#include <iconv.h>
 
29
 
27
30
#ifdef __cplusplus
28
31
extern "C" {
29
32
#pragma }
30
33
#endif /* __cplusplus */
31
34
 
32
 
#include <sys/types.h>
33
 
#include <iconv.h>
34
 
 
35
35
char *g_mime_iconv_strdup (iconv_t cd, const char *string);
36
36
char *g_mime_iconv_strndup (iconv_t cd, const char *string, size_t n);
37
37