static bool s_is_comment_line()

in source/aws_profile.c [101:104]


static bool s_is_comment_line(const struct aws_byte_cursor *line_cursor) {
    char first_char = *line_cursor->ptr;
    return first_char == '#' || first_char == ';';
}