blob: 76a752c9d31b445675e4e69ebabd31b62299375d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* File: utf8.c
*
* Copyright (C) 2009 Jorge Arellano Cid <jcid@dillo.org>
*
* 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.
*/
#include <fltk/utf.h>
#include "utf8.hh"
// C++ functions with C linkage ----------------------------------------------
/*
* Write UTF-8 encoding of ucs into buf and return number of bytes written.
*/
int a_Utf8_encode(unsigned int ucs, char *buf)
{
return utf8encode(ucs, buf);
}
/*
* Examine first srclen bytes of src.
* Return 0 if not legal UTF-8, 1 if all ASCII, 2 if all below 0x800,
* 3 if all below 0x10000, and 4 otherwise.
*/
int a_Utf8_test(const char* src, unsigned int srclen)
{
return utf8test(src, srclen);
}
|