diff options
author | Ryan <fauxpark@gmail.com> | 2022-09-13 01:49:04 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 08:49:04 -0700 |
commit | 3d667f09705fa780bd5881cfa3b3cb10fa41b1fe (patch) | |
tree | b05d0a4cd413947c1ae09fc08c33f2411029d29e /quantum/unicode/utf8.h | |
parent | 4087251da6ffcbfd16a9b655b7816803a565f0a6 (diff) |
Refactor Unicode feature (#18333)
Diffstat (limited to 'quantum/unicode/utf8.h')
-rw-r--r-- | quantum/unicode/utf8.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/quantum/unicode/utf8.h b/quantum/unicode/utf8.h new file mode 100644 index 0000000000..521dd1918c --- /dev/null +++ b/quantum/unicode/utf8.h @@ -0,0 +1,21 @@ +/* Copyright 2021 QMK + * + * 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 2 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/>. + */ + +#pragma once + +#include <stdint.h> + +const char *decode_utf8(const char *str, int32_t *code_point); |