X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=parser.c;h=af4b6a899ee773dc04f8b6f818d7bd3d9a28e27f;hb=373937ba4ad87e9fa55dbf89644182050ed1b75a;hp=6d91c057186115d2e0a58b628503394b98869917;hpb=3f3175b653a9a02b08a50a23199b5451ade318bc;p=cparser diff --git a/parser.c b/parser.c index 6d91c05..af4b6a8 100644 --- a/parser.c +++ b/parser.c @@ -1721,7 +1721,7 @@ static __attribute__((unused)) void debug_print_type_path( } /** - * Return the top type path entry, ie. in a path + * Return the top type path entry, i.e. in a path * (type).a.b returns the b. */ static type_path_entry_t *get_type_path_top(const type_path_t *path) @@ -1774,7 +1774,7 @@ static void descend_into_subtype(type_path_t *path) } /** - * Pop an entry from the given type path, ie. returning from + * Pop an entry from the given type path, i.e. returning from * (type).a.b to (type).a */ static void ascend_from_subtype(type_path_t *path) @@ -3882,7 +3882,7 @@ static bool contains_attribute(const attribute_t *list, const attribute_t *attr) } /** - * test wether new_list contains any attributes not included in old_list + * Tests whether new_list contains any attributes not included in old_list */ static bool has_new_attributes(const attribute_t *old_list, const attribute_t *new_list) @@ -7069,7 +7069,7 @@ static void handle_builtin_argument_restrictions(call_expression_t *call) } /** - * Parse a call expression, ie. expression '( ... )'. + * Parse a call expression, i.e. expression '( ... )'. * * @param expression the function address */ @@ -7241,7 +7241,7 @@ static void semantic_condition(expression_t const *const expr, } /** - * Parse a conditional expression, ie. 'expression ? ... : ...'. + * Parse a conditional expression, i.e. 'expression ? ... : ...'. * * @param expression the conditional expression */ @@ -9547,7 +9547,7 @@ static statement_t *parse_declaration_statement(void) } /** - * Parse an expression statement, ie. expr ';'. + * Parse an expression statement, i.e. expr ';'. */ static statement_t *parse_expression_statement(void) {