mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 13:45:10 +00:00
[FIX] BMP for MUC nicks, dip toes in vCard avatars
Can, your, Bifrost, Do, That. -lh
This commit is contained in:
parent
9b4d97b033
commit
6167732e83
6 changed files with 378 additions and 17 deletions
13
src/Main.c
13
src/Main.c
|
|
@ -12,6 +12,7 @@
|
|||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <Unistring.h>
|
||||
#include <Parsee.h>
|
||||
#include <XMPP.h>
|
||||
#include <AS.h>
|
||||
|
|
@ -71,6 +72,18 @@ Main(Array *args, HashMap *env)
|
|||
|
||||
start = UtilTsMillis();
|
||||
|
||||
{
|
||||
Unistr *s = UnistrCreate("Array 日本語🌋");
|
||||
size_t i;
|
||||
for (i = 0; i < UnistrSize(s); i++)
|
||||
{
|
||||
uint32_t cp = UnistrGetch(s, i);
|
||||
Log(LOG_INFO, "%X", cp);
|
||||
}
|
||||
|
||||
UnistrFree(s);
|
||||
}
|
||||
|
||||
memset(&conf, 0, sizeof(conf));
|
||||
Log(LOG_INFO,
|
||||
"%s - v%s[%s] (Cytoplasm %s)",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue