OSDN Git Service

Change a directory tree
[peercast-im/PeerCastIM.git] / c: / Git / PeerCast.root / PeerCast / core / common / identify_encoding.h
diff --git a/c:/Git/PeerCast.root/PeerCast/core/common/identify_encoding.h b/c:/Git/PeerCast.root/PeerCast/core/common/identify_encoding.h
deleted file mode 100644 (file)
index 5ccaf72..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- *
- * \8a¿\8e\9a\83R\81[\83h\82Ì\94»\95Ê\82µ\81Aiconv \97p\82Ì\95\8e\9a\83G\83\93\83R\81[\83f\83B\83\93\83O\95\8e\9a\97ñ\82ð\95Ô\82·
- *
- * 2001/10/24  Remove static variables
- *             Kazuhiko Iwama <iwama@ymc.ne.jp>
- * 2001/10/14  First version
- *             Kazuhiko Iwama <iwama@ymc.ne.jp>
- *
- */
-
-#ifndef IDENTIFY_ENCODING_H
-#define IDENTIFY_ENCODING_H
-
-#define IDENTIFY_MAX_LENGTH 256
-
-enum identify_encoding_order {
-       ieo_EUCJP = 0,
-       ieo_SJIS  = 1
-};
-
-typedef struct {
-       int flag;
-       int state;
-       int c_type;
-} ie_state_t;
-
-typedef struct {
-       enum identify_encoding_order order;
-       ie_state_t  st_ascii;
-       ie_state_t  st_jis;
-       ie_state_t  st_sjis;
-       ie_state_t  st_eucjp;
-       ie_state_t  st_utf8;
-} identify_encoding_t;
-
-identify_encoding_t* identify_encoding_open(enum identify_encoding_order order);
-void identify_encoding_close(identify_encoding_t* cd);
-void identify_encoding_reset(identify_encoding_t* cd);
-const char *identify_encoding(identify_encoding_t *cd, char* instr);
-
-#endif