From 4e5aa7e0aa1e47b525db8f86be1ecda1e9e435d2 Mon Sep 17 00:00:00 2001 From: konn Date: Wed, 23 Jan 2008 03:19:42 +0000 Subject: [PATCH] * Added file. git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/modchxj/mod_chxj/trunk@1795 1a406e8e-add9-4483-a2c8-d8cac5b7c224 --- include/chxj_emoji.h | 25 +++++++++++++++++++++++++ src/chxj_emoji.c | 30 ++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 include/chxj_emoji.h create mode 100644 src/chxj_emoji.c diff --git a/include/chxj_emoji.h b/include/chxj_emoji.h new file mode 100644 index 00000000..704e63c2 --- /dev/null +++ b/include/chxj_emoji.h @@ -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 index 00000000..287f5fa3 --- /dev/null +++ b/src/chxj_emoji.c @@ -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; +} -- 2.11.0