Analyser/Get_Indent [ Functions ]

SYNOPSIS

static int Get_Indent(
    char *line )

INPUTS

RESULT

The indentation.

SOURCE

{
    int                 i;

    for ( i = 0; line[i] && utf8_isspace( line[i] ); ++i )
    {
        /* empty */
    }
    return i;
}