Lines Matching defs:from
669 * append_string(from, to, length)
674 * from The source (C style) string
676 * length The length of the from string
681 append_string(register wchar_t *from, register String to, register int length)
684 length = wcslen(from);
695 (void) wcsncpy(to->text.p, from, length);
701 wchar_t * get_wstring(char *from) {
702 if(from == NULL) {
706 wchar_t * wcbuf = ALLOC_WC(strlen(from) + 1);
707 mbstowcs(wcbuf, from, strlen(from)+1);
712 append_string(register char *from, register String to, register int length)
715 length = strlen(from);
726 (void) mbstowcs(to->text.p, from, length);
782 * append_char(from, to)
787 * from Single character to append to string
793 append_char(wchar_t from, register String to)
801 *(to->text.p)++ = from;