Searched defs:text (Results 1 - 1 of 1) sorted by relevance

/solaris-userland/components/jansson/doc/html/_downloads/
H A Dgithub_commits.c19 /* Return the offset of the first newline in text or the length of
20 text if there's no newline */
21 static int newline_offset(const char *text) argument
23 const char *newline = strchr(text, '\n');
25 return strlen(text);
27 return (int)(newline - text);
121 char *text; local
136 text = request(url);
137 if(!text)
140 root = json_loads(text,
[all...]

Completed in 12 milliseconds