summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2022-05-30 13:41:48 +0800
committerPeng Wu <alexepico@gmail.com>2022-05-30 13:41:48 +0800
commitcaaeaf4f69869c272a9944b90e0a9fbbce6d2663 (patch)
treea2e75176c377084844633c9247dd0d1cfcb7fe4d /src
parent7af8e370d2bc470d1633a53a49e2a2cebe57d5ba (diff)
downloadlibpinyin-caaeaf4f69869c272a9944b90e0a9fbbce6d2663.tar.gz
libpinyin-caaeaf4f69869c272a9944b90e0a9fbbce6d2663.tar.xz
libpinyin-caaeaf4f69869c272a9944b90e0a9fbbce6d2663.zip
Write pinyin_utils.h
Diffstat (limited to 'src')
-rw-r--r--src/include/pinyin_utils.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/include/pinyin_utils.h b/src/include/pinyin_utils.h
new file mode 100644
index 0000000..9be3bd1
--- /dev/null
+++ b/src/include/pinyin_utils.h
@@ -0,0 +1,32 @@
+/*
+ * libpinyin
+ * Library to deal with pinyin.
+ *
+ * Copyright (C) 2022 Peng Wu
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PINYIN_UTILS_H
+#define PINYIN_UTILS_H
+
+#include <assert.h>
+
+#if defined(NDEBUG) || defined(G_DISABLE_ASSERT)
+#define check_result(expr) expr
+#else
+#define check_result(expr) assert(expr)
+#endif
+
+#endif