[][src]Function cmark_gfm_sys::cmark_parser_is_blank

pub unsafe extern "C" fn cmark_parser_is_blank(
    parser: *mut cmark_parser
) -> c_int

Return 'true' if the line currently being processed has been entirely consumed, 'false' otherwise.

Example:

  foo        bar            baz  \n
^
offset

This function will return 'false' here.

  foo        bar            baz  \n
                ^
             offset

This function will still return 'false'.

  foo        bar            baz  \n
                               ^
                            offset

At this point, this function will now return 'true'.