summaryrefslogtreecommitdiffstats
path: root/utf8.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2023-09-10 00:35:48 +0200
committerpgen <p.gen.progs@gmail.com>2023-09-11 14:15:32 +0200
commit36881ac8835674bf5ce0112f1c5bfa7d1b1e3f27 (patch)
tree97e706c87e9189c1896b5117578f112f8ce7484d /utf8.h
parentb4e826f3ce669758eb2847d5d7eb65ee2c4755d0 (diff)
Reformatting source code
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/utf8.h b/utf8.h
index 255a47f..9f8faa8 100644
--- a/utf8.h
+++ b/utf8.h
@@ -28,33 +28,33 @@ size_t
utf8_offset(char *, size_t);
char *
-utf8_strprefix(char * d, char * s, long n, long * pos);
+utf8_strprefix(char *d, char *s, long n, long *pos);
size_t
-utf8_strlen(char * str);
+utf8_strlen(char *str);
wchar_t *
-utf8_strtowcs(char * s);
+utf8_strtowcs(char *s);
void
-utf8_sanitize(char * s, char sc);
+utf8_sanitize(char *s, char sc);
int
-cptoutf8(char * utf8_str, uint32_t c);
+cptoutf8(char *utf8_str, uint32_t c);
int
-utf8_interpret(char * s, char sc);
+utf8_interpret(char *s, char sc);
char *
-utf8_validate(char * str);
+utf8_validate(char *str);
char *
-utf8_prev(const char * str, const char * p);
+utf8_prev(const char *str, const char *p);
char *
-utf8_next(char * p);
+utf8_next(char *p);
void
-utf8_strtolower(char * dst, char * src);
+utf8_strtolower(char *dst, char *src);
#endif