Lines Matching defs:input
113 * conv_to_utf8(input)
115 * Convert the input string to utf8 from the current locale. If the
118 * return value may be a new string or the original input string.
122 conv_to_utf8(char *input)
125 char *inval = input;
126 char *output = input;
139 size = strlen(input);
150 output = input;
154 output = input;
168 * conv_from(input)
170 * Convert the input string from utf8 to current locale. If the
172 * a new string or the original input string.
176 conv_from_utf8(char *input)
179 char *output = input;
180 char *inval = input;
193 size = strlen(input);
202 output = input;
205 output = input;