summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/u8c/dbgprint.h25
-rw-r--r--include/u8c/debug.h25
-rw-r--r--include/u8c/fmttyp.h24
-rw-r--r--include/u8c/free.h20
-rw-r--r--include/u8c/print.h20
-rw-r--r--include/u8c/u8dec.h21
-rw-r--r--include/u8c/u8enc.h21
7 files changed, 156 insertions, 0 deletions
diff --git a/include/u8c/dbgprint.h b/include/u8c/dbgprint.h
new file mode 100644
index 0000000..3f4afaf
--- /dev/null
+++ b/include/u8c/dbgprint.h
@@ -0,0 +1,25 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_dbgprint)
+# define u8c_sym_dbgprint
+# if defined(NDEBUG)
+# define u8c_dbgprint(...)
+# else
+# include <u8c/print.h>
+# include <stdint.h>
+# define u8c_dbgprint(...) { u8c_print(__VA_ARGS__); }
+# endif
+# endif
diff --git a/include/u8c/debug.h b/include/u8c/debug.h
new file mode 100644
index 0000000..38c00b0
--- /dev/null
+++ b/include/u8c/debug.h
@@ -0,0 +1,25 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_debug)
+# define u8c_sym_debug
+# include <stdint.h>
+uint_least8_t const inline u8c_debug =
+# if defined(NDEBUG)
+ 0x0;
+# else
+ 0x1;
+# endif
+# endif
diff --git a/include/u8c/fmttyp.h b/include/u8c/fmttyp.h
new file mode 100644
index 0000000..b2d79ea
--- /dev/null
+++ b/include/u8c/fmttyp.h
@@ -0,0 +1,24 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_fmttyp)
+# define u8c_sym_fmttyp
+enum u8c_fmttyp {
+ u8c_fmttyp_chr,
+ u8c_fmttyp_int,
+ u8c_fmttyp_str,
+ u8c_fmttyp_uint,
+};
+# endif
diff --git a/include/u8c/free.h b/include/u8c/free.h
new file mode 100644
index 0000000..573089e
--- /dev/null
+++ b/include/u8c/free.h
@@ -0,0 +1,20 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_free)
+# define u8c_sym_free
+# include <stdint.h>
+extern uint_least8_t u8c_free(void * ptr);
+# endif
diff --git a/include/u8c/print.h b/include/u8c/print.h
new file mode 100644
index 0000000..0e52cf1
--- /dev/null
+++ b/include/u8c/print.h
@@ -0,0 +1,20 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_print)
+# define u8c_sym_print
+# include <stdint.h>
+extern uint_least8_t u8c_print(uint_least32_t * str,...);
+# endif
diff --git a/include/u8c/u8dec.h b/include/u8c/u8dec.h
new file mode 100644
index 0000000..07c0e27
--- /dev/null
+++ b/include/u8c/u8dec.h
@@ -0,0 +1,21 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_u8dec)
+# define u8c_sym_u8dec
+# include <stddef.h>
+# include <stdint.h>
+extern uint_least8_t u8c_u8dec(uint_least8_t * utf,size_t * codepssz,uint_least32_t * * codeps);
+# endif
diff --git a/include/u8c/u8enc.h b/include/u8c/u8enc.h
new file mode 100644
index 0000000..6083c2a
--- /dev/null
+++ b/include/u8c/u8enc.h
@@ -0,0 +1,21 @@
+/*
+ Copyright 2021 Gabriel Jensen
+
+ This file is part of u8c.
+
+ u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ u8c 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with u8c.
+
+ If not, see <https://www.gnu.org/licenses/>.
+*/
+# if !defined(u8c_sym_u8enc)
+# define u8c_sym_u8enc
+# include <stddef.h>
+# include <stdint.h>
+extern uint_least8_t u8c_u8enc(uint_least32_t * codeps,size_t * utfsz,uint_least8_t * * utf);
+# endif