HomeSort by: relevance | last modified time | path
    Searched defs:append_char (Results 1 - 2 of 2) sorted by relevancy

  /src/tools/compat/
snprintf.c 75 void (*append_char)(struct state *, unsigned char); member in struct:state
166 (*state->append_char)(state, rep[n % base]);
173 (*state->append_char)(state, '0');
185 (*state->append_char)(state, '0');
192 (*state->append_char)(state, rep[10] + 23); /* XXX */
193 (*state->append_char)(state, '0');
197 (*state->append_char)(state, '-');
200 (*state->append_char)(state, '+');
203 (*state->append_char)(state, ' ');
215 (*state->append_char)(state, ' ')
273 append_char(struct state *state, function in typeref:typename:int
    [all...]
  /src/lib/libedit/
filecomplete.c 208 const char *append_char = NULL; local in function:escape_filename
296 append_char = app_func(filename);
298 if (append_char[0] == ' ') {
300 escaped_str[offset++] = append_char[0];
302 escaped_str[offset++] = append_char[0];
306 if (single_match && (append_char && append_char[0] == ' ')) {

Completed in 12 milliseconds