mirror of
https://github.com/0intro/wmii
synced 2024-11-22 13:52:17 +03:00
12 lines
199 B
C
12 lines
199 B
C
/* Written by Kris Maglione <maglione.k at Gmail> */
|
|
/* Public domain */
|
|
#include "util.h"
|
|
|
|
int
|
|
utflcpy(char *to, const char *from, int l) {
|
|
char *p;
|
|
|
|
p = utfecpy(to, to+l, from);
|
|
return p-to;
|
|
}
|