]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/transcode.h
Clean up Clang analyzer warnings.
[thirdparty/cups.git] / cups / transcode.h
index a8cb300b5d7dd14aeae09f69bedf6173e36a3370..844de4d577683cf28c030192414117cf0c4667d9 100644 (file)
@@ -1,25 +1,10 @@
 /*
- * "$Id$"
+ * Transcoding definitions for CUPS.
  *
- *   Transcoding definitions for the Common UNIX Printing System (CUPS).
+ * Copyright 2007-2011 by Apple Inc.
+ * Copyright 1997-2006 by Easy Software Products.
  *
- *   Copyright 1997-2006 by Easy Software Products.
- *
- *   These coded instructions, statements, and computer programs are
- *   the property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the
- *   file "LICENSE.txt" which should have been included with this file.
- *   If this file is missing or damaged please contact Easy Software
- *   Products at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ * Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
  */
 
 #ifndef _CUPS_TRANSCODE_H_
@@ -64,25 +49,20 @@ typedef unsigned long  cups_vbcs_t; /* VBCS Legacy 32-bit unit */
 extern int     cupsCharsetToUTF8(cups_utf8_t *dest,
                                  const char *src,
                                  const int maxout,
-                                 const cups_encoding_t encoding);
+                                 const cups_encoding_t encoding) _CUPS_API_1_2;
 extern int     cupsUTF8ToCharset(char *dest,
                                  const cups_utf8_t *src,
                                  const int maxout,
-                                 const cups_encoding_t encoding);
+                                 const cups_encoding_t encoding) _CUPS_API_1_2;
 extern int     cupsUTF8ToUTF32(cups_utf32_t *dest,
                                const cups_utf8_t *src,
-                               const int maxout);
+                               const int maxout) _CUPS_API_1_2;
 extern int     cupsUTF32ToUTF8(cups_utf8_t *dest,
                                const cups_utf32_t *src,
-                               const int maxout);
+                               const int maxout) _CUPS_API_1_2;
 
 #  ifdef __cplusplus
 }
 #  endif /* __cplusplus */
 
 #endif /* !_CUPS_TRANSCODE_H_ */
-
-
-/*
- * End of "$Id$"
- */