Skip to content

Commit

Permalink
[C] Add completions for C23 headers (#4077)
Browse files Browse the repository at this point in the history
There's two new headers defined C23, stdbit.h and stdckdint.h.
  • Loading branch information
braewoods authored Oct 31, 2024
1 parent b852edd commit 7fe7b33
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions C++/C Standard Includes.sublime-completions
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,27 @@
"contents": "stdatomic.h",
"kind": ["namespace", "h", "Header"]
},
{
// (since C23) Bit manipulation functions and byte order macros
"trigger": "stdbit.h",
"details": "Added in C23",
"contents": "stdbit.h",
"kind": ["namespace", "h", "Header"]
},
{
// (since C99) Boolean type
"trigger": "stdbool.h",
"details": "Added in C99",
"contents": "stdbool.h",
"kind": ["namespace", "h", "Header"]
},
{
// (since C23) Checked integer arithmetic macros
"trigger": "stdckdint.h",
"details": "Added in C23",
"contents": "stdckdint.h",
"kind": ["namespace", "h", "Header"]
},
{
// Common macro definitions
"trigger": "stddef.h",
Expand Down

0 comments on commit 7fe7b33

Please sign in to comment.