tmpfile: Fix C++ test error on mingw.
[pspp] / lib / striconveh.h
index e1543da03c91514e35b8a47add765d96e9aae2c7..295a8034d1604f842f33d247066530f29d67d09c 100644 (file)
@@ -1,5 +1,5 @@
 /* Character set conversion with error handling.
-   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2001-2007, 2009-2010 Free Software Foundation, Inc.
    Written by Bruno Haible and Simon Josefsson.
 
    This program is free software: you can redistribute it and/or modify
@@ -54,7 +54,7 @@ typedef struct
    set.  */
 extern int
        iconveh_open (const char *to_codeset, const char *from_codeset,
-                    iconveh_t *cdp);
+                     iconveh_t *cdp);
 
 /* Close a conversion descriptor created by iconveh_open().
    Return value: 0 if successful, otherwise -1 and errno set.  */
@@ -78,10 +78,10 @@ extern int
    unchanged if no dynamic memory allocation was necessary.  */
 extern int
        mem_cd_iconveh (const char *src, size_t srclen,
-                      const iconveh_t *cd,
-                      enum iconv_ilseq_handler handler,
-                      size_t *offsets,
-                      char **resultp, size_t *lengthp);
+                       const iconveh_t *cd,
+                       enum iconv_ilseq_handler handler,
+                       size_t *offsets,
+                       char **resultp, size_t *lengthp);
 
 /* Convert an entire string from one encoding to another, using iconv.
    The original string is the NUL-terminated string starting at SRC.
@@ -94,8 +94,8 @@ extern int
    successful, otherwise NULL and errno set.  */
 extern char *
        str_cd_iconveh (const char *src,
-                      const iconveh_t *cd,
-                      enum iconv_ilseq_handler handler);
+                       const iconveh_t *cd,
+                       enum iconv_ilseq_handler handler);
 
 #endif
 
@@ -114,10 +114,10 @@ extern char *
    unchanged if no dynamic memory allocation was necessary.  */
 extern int
        mem_iconveh (const char *src, size_t srclen,
-                   const char *from_codeset, const char *to_codeset,
-                   enum iconv_ilseq_handler handler,
-                   size_t *offsets,
-                   char **resultp, size_t *lengthp);
+                    const char *from_codeset, const char *to_codeset,
+                    enum iconv_ilseq_handler handler,
+                    size_t *offsets,
+                    char **resultp, size_t *lengthp);
 
 /* Convert an entire string from one encoding to another, using iconv.
    The original string is the NUL-terminated string starting at SRC.
@@ -128,8 +128,8 @@ extern int
    successful, otherwise NULL and errno set.  */
 extern char *
        str_iconveh (const char *src,
-                   const char *from_codeset, const char *to_codeset,
-                   enum iconv_ilseq_handler handler);
+                    const char *from_codeset, const char *to_codeset,
+                    enum iconv_ilseq_handler handler);
 
 
 #ifdef __cplusplus