Add file src/share/grabbag/snprintf.c to grabbag library.
[platform/upstream/flac.git] / include / share / utf8.h
index 465fd82..7d6650d 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef SHARE__UTF8_H
+#define SHARE__UTF8_H
 
 /*
  * Convert a string between UTF-8 and the locale's charset.
@@ -17,7 +19,7 @@
  *   3 : unknown encoding (but still converted, using '?')
  */
 
-void convert_set_charset(const char *charset);
-
 int utf8_encode(const char *from, char **to);
 int utf8_decode(const char *from, char **to);
+
+#endif