File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- *develop.txt* For Vim version 9.1. Last change: 2025 Aug 10
1+ *develop.txt* For Vim version 9.1. Last change: 2025 Aug 11
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -340,8 +340,14 @@ Therefore, the latest ISO C standard we follow is:
340340
341341In addition, the following `C99` features are explicitly allowed:
342342 - `// ` comments, as required by | style-comments | ;
343- - the `_Bool` type.
344- - logical lines may contain up to 4095 characters;
343+ - Mixed declarations and statements in a block;
344+ - Variadic macros `(..., __VA_ARGS__)`;
345+ - Trailing comma in `enum ` lists;
346+ - `_Bool` type (for `bool` , `true` and `false` );
347+ - `__func__` predefined identifier;
348+ - `inline` functions (use `static inline` for portability);
349+ - Compound literals `(type){ initializer-list }`;
350+ - Logical source lines up to 4095 characters.
345351
346352Platform-specific code may use any newer compiler features supported on that
347353platform.
You can’t perform that action at this time.
0 commit comments