CYAML Internals
utf8.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: ISC
3 *
4 * Copyright (C) 2018 Michael Drake <tlsa@netsurf-browser.org>
5 */
6
12#ifndef CYAML_UTF8_H
13#define CYAML_UTF8_H
14
29 const uint8_t *s,
30 unsigned *len);
31
43 const void * const str1,
44 const void * const str2);
45
46#endif
int cyaml_utf8_casecmp(const void *const str1, const void *const str2)
Definition: utf8.c:188
unsigned cyaml_utf8_get_codepoint(const uint8_t *s, unsigned *len)
Definition: utf8.c:47