MCPcopy Create free account
hub / github.com/PolyMC/PolyMC / _isspace

Function _isspace

libraries/hoedown/src/document.c:323–327  ·  view source on GitHub ↗

* Check whether a char is a Markdown spacing char. * Right now we only consider spaces the actual * space and a newline: tabs and carriage returns * are filtered out during the preprocessing phase. * * If we wanted to actually be UTF-8 compliant, we * should instead extract an Unicode codepoint from * this character and check for space properties. */

Source from the content-addressed store, hash-verified

321 * this character and check for space properties.
322 */
323static int
324_isspace(int c)
325{
326 return c == ' ' || c == '\n';
327}
328
329/* is_empty_all: verify that all the data is spacing */
330static int

Callers 11

is_empty_allFunction · 0.85
find_emph_charFunction · 0.85
parse_emph1Function · 0.85
parse_emph2Function · 0.85
parse_emph3Function · 0.85
char_emphasisFunction · 0.85
char_linkFunction · 0.85
char_superscriptFunction · 0.85
parse_codefenceFunction · 0.85
parse_table_rowFunction · 0.85
parse_table_headerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected