static bool s_is_comment_token()

in source/aws_profile.c [76:80]


static bool s_is_comment_token(uint8_t value) {
    char char_value = (char)value;

    return char_value == '#' || char_value == ';';
}