mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 02:49:00 +08:00
3eb4eb8074
PUBLISHED_FROM=331821dcd1f7dc8a94581cd8a9b51aa00a89fddc
670 B
670 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_skip() | mg_skip | func | const char *mg_skip(const char *s, const char *end_string, const char *delimiters, struct mg_str *v); |
Fetches substring from input string s
, end
into v
.
Skips initial delimiter characters. Records first non-delimiter character
at the beginning of substring v
. Then scans the rest of the string
until a delimiter character or end-of-string is found.
delimiters
is a 0-terminated string containing delimiter characters.
Either one of delimiters
or end_string
terminates the search.
Returns an s
pointer, advanced forward where parsing has stopped.