* 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. */
| 321 | * this character and check for space properties. |
| 322 | */ |
| 323 | static int |
| 324 | _isspace(int c) |
| 325 | { |
| 326 | return c == ' ' || c == '\n'; |
| 327 | } |
| 328 | |
| 329 | /* is_empty_all: verify that all the data is spacing */ |
| 330 | static int |
no outgoing calls
no test coverage detected