maint: update copyright
[gnulib.git] / lib / striconveh.h
index e1543da..4f2416e 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-2014 Free Software Foundation, Inc.
    Written by Bruno Haible and Simon Josefsson.
 
    This program is free software: you can redistribute it and/or modify
@@ -33,7 +33,7 @@ extern "C" {
 
 #if HAVE_ICONV
 
-/* An conversion descriptor for use by the iconveh functions.  */
+/* A conversion descriptor for use by the iconveh functions.  */
 typedef struct
   {
     /* Conversion descriptor from FROM_CODESET to TO_CODESET, or (iconv_t)(-1)
@@ -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