OSDN Git Service

* Added file.
authorkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Wed, 23 Jan 2008 03:19:42 +0000 (03:19 +0000)
committerkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Wed, 23 Jan 2008 03:19:42 +0000 (03:19 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/modchxj/mod_chxj/trunk@1795 1a406e8e-add9-4483-a2c8-d8cac5b7c224

include/chxj_emoji.h [new file with mode: 0644]
src/chxj_emoji.c [new file with mode: 0644]

diff --git a/include/chxj_emoji.h b/include/chxj_emoji.h
new file mode 100644 (file)
index 0000000..704e63c
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2005-2008 Atsushi Konno All rights reserved.
+ * Copyright (C) 2005 QSDN,Inc. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#ifndef __CHXJ_EMOJI_H__
+#define __CHXJ_EMOJI_H__
+char *
+chxj_emoji_to_meta_emoji(
+  request_rec         *r,
+  chxjconvrule_entry  *entryp,
+  char                *src,
+  apr_size_t          *ilen);
+#endif
diff --git a/src/chxj_emoji.c b/src/chxj_emoji.c
new file mode 100644 (file)
index 0000000..287f5fa
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2005-2008 Atsushi Konno All rights reserved.
+ * Copyright (C) 2005 QSDN,Inc. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include "apr.h"
+#include "mod_chxj.h"
+#include "chxj_apply_convrule.h"
+
+
+char *
+chxj_emoji_to_meta_emoji(
+  request_rec         *r,
+  chxjconvrule_entry  *entryp,
+  char                *src,
+  apr_size_t          *ilen) 
+{
+  return src;
+}