blob: a593bd26c2cfd46d8600d6cd17f80fae7ca31b8c [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: C
Christian Brabandte978b452023-08-13 10:33:05 +02003" Maintainer: The Vim Project <https://github.com/vim/vim>
4" Last Change: 2023 Aug 10
5" Former Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007" Quit when a (custom) syntax file was already loaded
8if exists("b:current_syntax")
Bram Moolenaar071d4272004-06-13 20:20:40 +00009 finish
10endif
11
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010012let s:cpo_save = &cpo
13set cpo&vim
14
Bram Moolenaarce001a32022-04-27 15:25:03 +010015let s:ft = matchstr(&ft, '^\%([^.]\)\+')
Bram Moolenaarbc488a72013-07-05 21:01:22 +020016
Bram Moolenaar98a29d02021-01-18 19:55:44 +010017" check if this was included from cpp.vim
18let s:in_cpp_family = exists("b:filetype_in_cpp_family")
19
Bram Moolenaar40962ec2018-01-28 22:47:25 +010020" Optional embedded Autodoc parsing
21" To enable it add: let g:c_autodoc = 1
22" to your .vimrc
23if exists("c_autodoc")
24 syn include @cAutodoc <sfile>:p:h/autodoc.vim
25 unlet b:current_syntax
26endif
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028" A bunch of useful C keywords
29syn keyword cStatement goto break return continue asm
30syn keyword cLabel case default
31syn keyword cConditional if else switch
32syn keyword cRepeat while for do
33
34syn keyword cTodo contained TODO FIXME XXX
35
Bram Moolenaar5c736222010-01-06 20:54:52 +010036" It's easy to accidentally add a space after a backslash that was intended
37" for line continuation. Some compilers allow it, which makes it
Bram Moolenaar543b7ef2013-06-01 14:50:56 +020038" unpredictable and should be avoided.
Bram Moolenaar5c736222010-01-06 20:54:52 +010039syn match cBadContinuation contained "\\\s\+$"
40
Bram Moolenaar071d4272004-06-13 20:20:40 +000041" cCommentGroup allows adding matches for special things in comments
Bram Moolenaar5c736222010-01-06 20:54:52 +010042syn cluster cCommentGroup contains=cTodo,cBadContinuation
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
44" String and Character constants
45" Highlight special characters (those which have a backslash) differently
Bram Moolenaarce001a32022-04-27 15:25:03 +010046syn match cSpecial display contained "\\\%(x\x\+\|\o\{1,3}\|.\|$\)"
Bram Moolenaar071d4272004-06-13 20:20:40 +000047if !exists("c_no_utf")
Bram Moolenaarce001a32022-04-27 15:25:03 +010048 syn match cSpecial display contained "\\\%(u\x\{4}\|U\x\{8}\)"
Bram Moolenaar071d4272004-06-13 20:20:40 +000049endif
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020050
51if !exists("c_no_cformat")
52 " Highlight % items in strings.
Bram Moolenaar18144c82006-04-12 21:52:12 +000053 if !exists("c_no_c99") " ISO C99
Bram Moolenaarce001a32022-04-27 15:25:03 +010054 syn match cFormat display "%\%(\d\+\$\)\=[-+' #0*]*\%(\d*\|\*\|\*\d\+\$\)\%(\.\%(\d*\|\*\|\*\d\+\$\)\)\=\%([hlLjzt]\|ll\|hh\)\=\%([aAbdiuoxXDOUfFeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
Bram Moolenaar18144c82006-04-12 21:52:12 +000055 else
Bram Moolenaarce001a32022-04-27 15:25:03 +010056 syn match cFormat display "%\%(\d\+\$\)\=[-+' #0*]*\%(\d*\|\*\|\*\d\+\$\)\%(\.\%(\d*\|\*\|\*\d\+\$\)\)\=\%([hlL]\|ll\)\=\%([bdiuoxXDOUfeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
Bram Moolenaar18144c82006-04-12 21:52:12 +000057 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 syn match cFormat display "%%" contained
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020059endif
60
61" cCppString: same as cString, but ends at end of line
Bram Moolenaar98a29d02021-01-18 19:55:44 +010062if s:in_cpp_family && !exists("cpp_no_cpp11") && !exists("c_no_cformat")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020063 " ISO C++11
Bram Moolenaarce001a32022-04-27 15:25:03 +010064 syn region cString start=+\%(L\|u\|u8\|U\|R\|LR\|u8R\|uR\|UR\)\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
65 syn region cCppString start=+\%(L\|u\|u8\|U\|R\|LR\|u8R\|uR\|UR\)\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
Bram Moolenaard8b77f72015-03-05 21:21:19 +010066elseif s:ft ==# "c" && !exists("c_no_c11") && !exists("c_no_cformat")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020067 " ISO C99
68 syn region cString start=+\%(L\|U\|u8\)\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
69 syn region cCppString start=+\%(L\|U\|u8\)\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
70else
71 " older C or C++
Bram Moolenaard8b77f72015-03-05 21:21:19 +010072 syn match cFormat display "%%" contained
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +020073 syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
Bram Moolenaar071d4272004-06-13 20:20:40 +000074 syn region cCppString start=+L\="+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=cSpecial,cFormat,@Spell
75endif
76
Bram Moolenaarce001a32022-04-27 15:25:03 +010077syn region cCppSkip contained start="^\s*\%(%:\|#\)\s*\%(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\%(%:\|#\)\s*endif\>" contains=cSpaceError,cCppSkip
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020078
Bram Moolenaar2f3b5102014-11-19 18:54:17 +010079syn cluster cStringGroup contains=cCppString,cCppSkip
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020080
Bram Moolenaar071d4272004-06-13 20:20:40 +000081syn match cCharacter "L\='[^\\]'"
82syn match cCharacter "L'[^']*'" contains=cSpecial
83if exists("c_gnu")
84 syn match cSpecialError "L\='\\[^'\"?\\abefnrtv]'"
85 syn match cSpecialCharacter "L\='\\['\"?\\abefnrtv]'"
86else
87 syn match cSpecialError "L\='\\[^'\"?\\abfnrtv]'"
88 syn match cSpecialCharacter "L\='\\['\"?\\abfnrtv]'"
89endif
90syn match cSpecialCharacter display "L\='\\\o\{1,3}'"
91syn match cSpecialCharacter display "'\\x\x\{1,2}'"
92syn match cSpecialCharacter display "L'\\x\x\+'"
93
Bram Moolenaar98a29d02021-01-18 19:55:44 +010094if (s:ft ==# "c" && !exists("c_no_c11")) || (s:in_cpp_family && !exists("cpp_no_cpp11"))
Bram Moolenaar3a991dd2014-10-02 01:41:41 +020095 " ISO C11 or ISO C++ 11
Bram Moolenaard8b77f72015-03-05 21:21:19 +010096 if exists("c_no_cformat")
97 syn region cString start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell extend
98 else
99 syn region cString start=+\%(U\|u8\=\)"+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell extend
100 endif
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100101 syn match cCharacter "[Uu]'[^\\]'"
102 syn match cCharacter "[Uu]'[^']*'" contains=cSpecial
103 if exists("c_gnu")
104 syn match cSpecialError "[Uu]'\\[^'\"?\\abefnrtv]'"
105 syn match cSpecialCharacter "[Uu]'\\['\"?\\abefnrtv]'"
106 else
107 syn match cSpecialError "[Uu]'\\[^'\"?\\abfnrtv]'"
108 syn match cSpecialCharacter "[Uu]'\\['\"?\\abfnrtv]'"
109 endif
110 syn match cSpecialCharacter display "[Uu]'\\\o\{1,3}'"
111 syn match cSpecialCharacter display "[Uu]'\\x\x\+'"
112endif
113
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114"when wanted, highlight trailing white space
115if exists("c_space_errors")
116 if !exists("c_no_trail_space_error")
117 syn match cSpaceError display excludenl "\s\+$"
118 endif
119 if !exists("c_no_tab_space_error")
120 syn match cSpaceError display " \+\t"me=e-1
121 endif
122endif
123
Bram Moolenaar9964e462007-05-05 17:54:07 +0000124" This should be before cErrInParen to avoid problems with #define ({ xxx })
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000125if exists("c_curly_error")
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100126 syn match cCurlyError "}"
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200127 syn region cBlock start="{" end="}" contains=ALLBUT,cBadBlock,cCurlyError,@cParenGroup,cErrInParen,cCppParen,cErrInBracket,cCppBracket,@cStringGroup,@Spell fold
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000128else
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100129 syn region cBlock start="{" end="}" transparent fold
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000130endif
Bram Moolenaar9964e462007-05-05 17:54:07 +0000131
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200132" Catch errors caused by wrong parenthesis and brackets.
133" Also accept <% for {, %> for }, <: for [ and :> for ] (C99)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134" But avoid matching <::.
Bram Moolenaara3e6bc92013-01-30 14:18:00 +0100135syn cluster cParenGroup contains=cParenError,cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserLabel,cBitField,cOctalZero,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom
Bram Moolenaar677ee682005-01-27 14:41:15 +0000136if exists("c_no_curly_error")
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100137 if s:in_cpp_family && !exists("cpp_no_cpp11")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200138 syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100139 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
140 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
141 syn match cParenError display ")"
142 syn match cErrInParen display contained "^^<%\|^%>"
143 else
Bram Moolenaar91359012019-11-30 17:57:03 +0100144 syn region cParen transparent start='(' end=')' contains=ALLBUT,cBlock,@cParenGroup,cCppParen,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100145 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
146 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
147 syn match cParenError display ")"
148 syn match cErrInParen display contained "^[{}]\|^<%\|^%>"
149 endif
Bram Moolenaar677ee682005-01-27 14:41:15 +0000150elseif exists("c_no_bracket_error")
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100151 if s:in_cpp_family && !exists("cpp_no_cpp11")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200152 syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100153 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
154 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
155 syn match cParenError display ")"
156 syn match cErrInParen display contained "<%\|%>"
157 else
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200158 syn region cParen transparent start='(' end=')' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cCppParen,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100159 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
160 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
161 syn match cParenError display ")"
162 syn match cErrInParen display contained "[{}]\|<%\|%>"
163 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164else
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100165 if s:in_cpp_family && !exists("cpp_no_cpp11")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200166 syn region cParen transparent start='(' end=')' contains=ALLBUT,@cParenGroup,cCppParen,cErrInBracket,cCppBracket,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100167 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
168 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
169 syn match cParenError display "[\])]"
170 syn match cErrInParen display contained "<%\|%>"
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200171 syn region cBracket transparent start='\[\|<::\@!' end=']\|:>' contains=ALLBUT,@cParenGroup,cErrInParen,cCppParen,cCppBracket,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100172 else
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200173 syn region cParen transparent start='(' end=')' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cCppParen,cErrInBracket,cCppBracket,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100174 " cCppParen: same as cParen but ends at end-of-line; used in cDefine
175 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
176 syn match cParenError display "[\])]"
177 syn match cErrInParen display contained "[\]{}]\|<%\|%>"
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200178 syn region cBracket transparent start='\[\|<::\@!' end=']\|:>' end='}'me=s-1 contains=ALLBUT,cBlock,@cParenGroup,cErrInParen,cCppParen,cCppBracket,@cStringGroup,@Spell
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100179 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 " cCppBracket: same as cParen but ends at end-of-line; used in cDefine
181 syn region cCppBracket transparent start='\[\|<::\@!' skip='\\$' excludenl end=']\|:>' end='$' contained contains=ALLBUT,@cParenGroup,cErrInParen,cParen,cBracket,cString,@Spell
182 syn match cErrInBracket display contained "[);{}]\|<%\|%>"
183endif
184
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200185if s:ft ==# 'c' || exists("cpp_no_cpp11")
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100186 syn region cBadBlock keepend start="{" end="}" contained containedin=cParen,cBracket,cBadBlock transparent fold
187endif
Bram Moolenaar97293012011-07-18 19:40:27 +0200188
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189"integer number, or floating point number without a dot and with "f".
190syn case ignore
191syn match cNumbers display transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctalError,cOctal
192" Same, but without octal error (for comments)
193syn match cNumbersCom display contained transparent "\<\d\|\.\d" contains=cNumber,cFloat,cOctal
Bram Moolenaarce001a32022-04-27 15:25:03 +0100194syn match cNumber display contained "\d\+\%(u\=l\{0,2}\|ll\=u\)\>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195"hex number
Bram Moolenaarce001a32022-04-27 15:25:03 +0100196syn match cNumber display contained "0x\x\+\%(u\=l\{0,2}\|ll\=u\)\>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197" Flag the first zero of an octal number as something special
Bram Moolenaarce001a32022-04-27 15:25:03 +0100198syn match cOctal display contained "0\o\+\%(u\=l\{0,2}\|ll\=u\)\>" contains=cOctalZero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199syn match cOctalZero display contained "\<0"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200"floating point number, with dot, optional exponent
Bram Moolenaarce001a32022-04-27 15:25:03 +0100201syn match cFloat display contained "\d\+\.\d*\%(e[-+]\=\d\+\)\=[fl]\="
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202"floating point number, starting with a dot, optional exponent
Bram Moolenaarce001a32022-04-27 15:25:03 +0100203syn match cFloat display contained "\.\d\+\%(e[-+]\=\d\+\)\=[fl]\=\>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204"floating point number, without dot, with exponent
205syn match cFloat display contained "\d\+e[-+]\=\d\+[fl]\=\>"
206if !exists("c_no_c99")
207 "hexadecimal floating point number, optional leading digits, with dot, with exponent
208 syn match cFloat display contained "0x\x*\.\x\+p[-+]\=\d\+[fl]\=\>"
209 "hexadecimal floating point number, with leading digits, optional dot, with exponent
210 syn match cFloat display contained "0x\x\+\.\=p[-+]\=\d\+[fl]\=\>"
211endif
212
213" flag an octal number with wrong digits
214syn match cOctalError display contained "0\o*[89]\d*"
215syn case match
216
217if exists("c_comment_strings")
218 " A comment can contain cString, cCharacter and cNumber.
219 " But a "*/" inside a cString in a cComment DOES end the comment! So we
220 " need to use a special type of cString: cCommentString, which also ends on
221 " "*/", and sees a "*" at the start of the line as comment again.
222 " Unfortunately this doesn't very well work for // type of comments :-(
Bram Moolenaarce001a32022-04-27 15:25:03 +0100223 syn match cCommentSkip contained "^\s*\*\%($\|\s\+\)"
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100224 syn region cCommentString contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end=+\*/+me=s-1 contains=cSpecial,cCommentSkip
225 syn region cComment2String contained start=+L\=\\\@<!"+ skip=+\\\\\|\\"+ end=+"+ end="$" contains=cSpecial
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200226 syn region cCommentL start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cComment2String,cCharacter,cNumbersCom,cSpaceError,cWrongComTail,@Spell
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000227 if exists("c_no_comment_fold")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000228 " Use "extend" here to have preprocessor lines not terminate halfway a
229 " comment.
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100230 syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell extend
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000231 else
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100232 syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cCommentString,cCharacter,cNumbersCom,cSpaceError,@Spell fold extend
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000233 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234else
235 syn region cCommentL start="//" skip="\\$" end="$" keepend contains=@cCommentGroup,cSpaceError,@Spell
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000236 if exists("c_no_comment_fold")
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000237 syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell extend
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000238 else
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000239 syn region cComment matchgroup=cCommentStart start="/\*" end="\*/" contains=@cCommentGroup,cCommentStartError,cSpaceError,@Spell fold extend
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000240 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241endif
242" keep a // comment separately, it terminates a preproc. conditional
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100243syn match cCommentError display "\*/"
244syn match cCommentStartError display "/\*"me=e-1 contained
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200245syn match cWrongComTail display "\*/"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247syn keyword cOperator sizeof
248if exists("c_gnu")
Bram Moolenaar47c532e2022-03-19 15:18:53 +0000249 syn keyword cType __label__ __complex__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250 syn keyword cStatement __asm__
Bram Moolenaar47c532e2022-03-19 15:18:53 +0000251 syn keyword cOperator __alignof__
252 syn keyword cOperator typeof __typeof__
253 syn keyword cOperator __real__ __imag__
254 syn keyword cStorageClass __attribute__ __const__ __extension__
255 syn keyword cStorageClass inline __inline__
256 syn keyword cStorageClass __restrict__ __volatile__ __noreturn__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257endif
258syn keyword cType int long short char void
259syn keyword cType signed unsigned float double
260if !exists("c_no_ansi") || exists("c_ansi_typedefs")
Bram Moolenaar9964e462007-05-05 17:54:07 +0000261 syn keyword cType size_t ssize_t off_t wchar_t ptrdiff_t sig_atomic_t fpos_t
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262 syn keyword cType clock_t time_t va_list jmp_buf FILE DIR div_t ldiv_t
263 syn keyword cType mbstate_t wctrans_t wint_t wctype_t
264endif
265if !exists("c_no_c99") " ISO C99
Bram Moolenaar6ee8d892012-01-10 14:55:01 +0100266 syn keyword cType _Bool bool _Complex complex _Imaginary imaginary
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 syn keyword cType int8_t int16_t int32_t int64_t
268 syn keyword cType uint8_t uint16_t uint32_t uint64_t
Bram Moolenaar03413f42016-04-12 21:07:15 +0200269 if !exists("c_no_bsd")
270 " These are BSD specific.
271 syn keyword cType u_int8_t u_int16_t u_int32_t u_int64_t
272 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 syn keyword cType int_least8_t int_least16_t int_least32_t int_least64_t
274 syn keyword cType uint_least8_t uint_least16_t uint_least32_t uint_least64_t
275 syn keyword cType int_fast8_t int_fast16_t int_fast32_t int_fast64_t
276 syn keyword cType uint_fast8_t uint_fast16_t uint_fast32_t uint_fast64_t
277 syn keyword cType intptr_t uintptr_t
278 syn keyword cType intmax_t uintmax_t
279endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200281syn keyword cTypedef typedef
282syn keyword cStructure struct union enum
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283syn keyword cStorageClass static register auto volatile extern const
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100284if !exists("c_no_c99") && !s:in_cpp_family
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285 syn keyword cStorageClass inline restrict
286endif
Bram Moolenaar6ee8d892012-01-10 14:55:01 +0100287if !exists("c_no_c11")
288 syn keyword cStorageClass _Alignas alignas
289 syn keyword cOperator _Alignof alignof
290 syn keyword cStorageClass _Atomic
291 syn keyword cOperator _Generic
292 syn keyword cStorageClass _Noreturn noreturn
293 syn keyword cOperator _Static_assert static_assert
294 syn keyword cStorageClass _Thread_local thread_local
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100295 syn keyword cType char16_t char32_t
Bram Moolenaar47c532e2022-03-19 15:18:53 +0000296 syn keyword cType max_align_t
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200297 " C11 atomics (take down the shield wall!)
298 syn keyword cType atomic_bool atomic_char atomic_schar atomic_uchar
299 syn keyword Ctype atomic_short atomic_ushort atomic_int atomic_uint
300 syn keyword cType atomic_long atomic_ulong atomic_llong atomic_ullong
301 syn keyword cType atomic_char16_t atomic_char32_t atomic_wchar_t
302 syn keyword cType atomic_int_least8_t atomic_uint_least8_t
303 syn keyword cType atomic_int_least16_t atomic_uint_least16_t
304 syn keyword cType atomic_int_least32_t atomic_uint_least32_t
305 syn keyword cType atomic_int_least64_t atomic_uint_least64_t
306 syn keyword cType atomic_int_fast8_t atomic_uint_fast8_t
307 syn keyword cType atomic_int_fast16_t atomic_uint_fast16_t
308 syn keyword cType atomic_int_fast32_t atomic_uint_fast32_t
309 syn keyword cType atomic_int_fast64_t atomic_uint_fast64_t
310 syn keyword cType atomic_intptr_t atomic_uintptr_t
311 syn keyword cType atomic_size_t atomic_ptrdiff_t
312 syn keyword cType atomic_intmax_t atomic_uintmax_t
Bram Moolenaar6ee8d892012-01-10 14:55:01 +0100313endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
315if !exists("c_no_ansi") || exists("c_ansi_constants") || exists("c_gnu")
316 if exists("c_gnu")
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000317 syn keyword cConstant __GNUC__ __FUNCTION__ __PRETTY_FUNCTION__ __func__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318 endif
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200319 syn keyword cConstant __LINE__ __FILE__ __DATE__ __TIME__ __STDC__ __STDC_VERSION__ __STDC_HOSTED__
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320 syn keyword cConstant CHAR_BIT MB_LEN_MAX MB_CUR_MAX
321 syn keyword cConstant UCHAR_MAX UINT_MAX ULONG_MAX USHRT_MAX
322 syn keyword cConstant CHAR_MIN INT_MIN LONG_MIN SHRT_MIN
323 syn keyword cConstant CHAR_MAX INT_MAX LONG_MAX SHRT_MAX
324 syn keyword cConstant SCHAR_MIN SINT_MIN SLONG_MIN SSHRT_MIN
325 syn keyword cConstant SCHAR_MAX SINT_MAX SLONG_MAX SSHRT_MAX
326 if !exists("c_no_c99")
Bram Moolenaar063b9d12016-07-09 20:21:48 +0200327 syn keyword cConstant __func__ __VA_ARGS__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000328 syn keyword cConstant LLONG_MIN LLONG_MAX ULLONG_MAX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 syn keyword cConstant INT8_MIN INT16_MIN INT32_MIN INT64_MIN
330 syn keyword cConstant INT8_MAX INT16_MAX INT32_MAX INT64_MAX
331 syn keyword cConstant UINT8_MAX UINT16_MAX UINT32_MAX UINT64_MAX
332 syn keyword cConstant INT_LEAST8_MIN INT_LEAST16_MIN INT_LEAST32_MIN INT_LEAST64_MIN
333 syn keyword cConstant INT_LEAST8_MAX INT_LEAST16_MAX INT_LEAST32_MAX INT_LEAST64_MAX
334 syn keyword cConstant UINT_LEAST8_MAX UINT_LEAST16_MAX UINT_LEAST32_MAX UINT_LEAST64_MAX
335 syn keyword cConstant INT_FAST8_MIN INT_FAST16_MIN INT_FAST32_MIN INT_FAST64_MIN
336 syn keyword cConstant INT_FAST8_MAX INT_FAST16_MAX INT_FAST32_MAX INT_FAST64_MAX
337 syn keyword cConstant UINT_FAST8_MAX UINT_FAST16_MAX UINT_FAST32_MAX UINT_FAST64_MAX
338 syn keyword cConstant INTPTR_MIN INTPTR_MAX UINTPTR_MAX
339 syn keyword cConstant INTMAX_MIN INTMAX_MAX UINTMAX_MAX
340 syn keyword cConstant PTRDIFF_MIN PTRDIFF_MAX SIG_ATOMIC_MIN SIG_ATOMIC_MAX
341 syn keyword cConstant SIZE_MAX WCHAR_MIN WCHAR_MAX WINT_MIN WINT_MAX
342 endif
Bram Moolenaarb4d6c3e2017-05-27 16:45:17 +0200343 syn keyword cConstant FLT_RADIX FLT_ROUNDS FLT_DIG FLT_MANT_DIG FLT_EPSILON DBL_DIG DBL_MANT_DIG DBL_EPSILON
344 syn keyword cConstant LDBL_DIG LDBL_MANT_DIG LDBL_EPSILON FLT_MIN FLT_MAX FLT_MIN_EXP FLT_MAX_EXP FLT_MIN_10_EXP FLT_MAX_10_EXP
345 syn keyword cConstant DBL_MIN DBL_MAX DBL_MIN_EXP DBL_MAX_EXP DBL_MIN_10_EXP DBL_MAX_10_EXP LDBL_MIN LDBL_MAX LDBL_MIN_EXP LDBL_MAX_EXP
346 syn keyword cConstant LDBL_MIN_10_EXP LDBL_MAX_10_EXP HUGE_VAL CLOCKS_PER_SEC NULL LC_ALL LC_COLLATE LC_CTYPE LC_MONETARY
347 syn keyword cConstant LC_NUMERIC LC_TIME SIG_DFL SIG_ERR SIG_IGN SIGABRT SIGFPE SIGILL SIGHUP SIGINT SIGSEGV SIGTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 " Add POSIX signals as well...
Bram Moolenaarb4d6c3e2017-05-27 16:45:17 +0200349 syn keyword cConstant SIGABRT SIGALRM SIGCHLD SIGCONT SIGFPE SIGHUP SIGILL SIGINT SIGKILL SIGPIPE SIGQUIT SIGSEGV
350 syn keyword cConstant SIGSTOP SIGTERM SIGTRAP SIGTSTP SIGTTIN SIGTTOU SIGUSR1 SIGUSR2
351 syn keyword cConstant _IOFBF _IOLBF _IONBF BUFSIZ EOF WEOF FOPEN_MAX FILENAME_MAX L_tmpnam
Bram Moolenaar71badf92023-04-22 22:40:14 +0100352 syn keyword cConstant SEEK_CUR SEEK_END SEEK_SET TMP_MAX EXIT_FAILURE EXIT_SUCCESS RAND_MAX
353 syn keyword cConstant stdin stdout stderr
354 " POSIX 2001, in unistd.h
355 syn keyword cConstant STDIN_FILENO STDOUT_FILENO STDERR_FILENO
Bram Moolenaar207f0092020-08-30 17:20:20 +0200356 " used in assert.h
357 syn keyword cConstant NDEBUG
Bram Moolenaar822ff862014-06-12 21:46:14 +0200358 " POSIX 2001
Bram Moolenaarb4d6c3e2017-05-27 16:45:17 +0200359 syn keyword cConstant SIGBUS SIGPOLL SIGPROF SIGSYS SIGURG SIGVTALRM SIGXCPU SIGXFSZ
Bram Moolenaar2b8388b2015-02-28 13:11:45 +0100360 " non-POSIX signals
361 syn keyword cConstant SIGWINCH SIGINFO
Bram Moolenaarb4d6c3e2017-05-27 16:45:17 +0200362 " Add POSIX errors as well. List comes from:
363 " http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html
364 syn keyword cConstant E2BIG EACCES EADDRINUSE EADDRNOTAVAIL EAFNOSUPPORT EAGAIN EALREADY EBADF
365 syn keyword cConstant EBADMSG EBUSY ECANCELED ECHILD ECONNABORTED ECONNREFUSED ECONNRESET EDEADLK
366 syn keyword cConstant EDESTADDRREQ EDOM EDQUOT EEXIST EFAULT EFBIG EHOSTUNREACH EIDRM EILSEQ
367 syn keyword cConstant EINPROGRESS EINTR EINVAL EIO EISCONN EISDIR ELOOP EMFILE EMLINK EMSGSIZE
368 syn keyword cConstant EMULTIHOP ENAMETOOLONG ENETDOWN ENETRESET ENETUNREACH ENFILE ENOBUFS ENODATA
369 syn keyword cConstant ENODEV ENOENT ENOEXEC ENOLCK ENOLINK ENOMEM ENOMSG ENOPROTOOPT ENOSPC ENOSR
Bram Moolenaar4c92e752019-02-17 21:18:32 +0100370 syn keyword cConstant ENOSTR ENOSYS ENOTBLK ENOTCONN ENOTDIR ENOTEMPTY ENOTRECOVERABLE ENOTSOCK ENOTSUP
Bram Moolenaarb4d6c3e2017-05-27 16:45:17 +0200371 syn keyword cConstant ENOTTY ENXIO EOPNOTSUPP EOVERFLOW EOWNERDEAD EPERM EPIPE EPROTO
372 syn keyword cConstant EPROTONOSUPPORT EPROTOTYPE ERANGE EROFS ESPIPE ESRCH ESTALE ETIME ETIMEDOUT
373 syn keyword cConstant ETXTBSY EWOULDBLOCK EXDEV
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 " math.h
375 syn keyword cConstant M_E M_LOG2E M_LOG10E M_LN2 M_LN10 M_PI M_PI_2 M_PI_4
376 syn keyword cConstant M_1_PI M_2_PI M_2_SQRTPI M_SQRT2 M_SQRT1_2
377endif
378if !exists("c_no_c99") " ISO C99
379 syn keyword cConstant true false
380endif
381
382" Accept %: for # (C99)
Bram Moolenaarce001a32022-04-27 15:25:03 +0100383syn region cPreCondit start="^\s*\zs\%(%:\|#\)\s*\%(if\|ifdef\|ifndef\|elif\)\>" skip="\\$" end="$" keepend contains=cComment,cCommentL,cCppString,cCharacter,cCppParen,cParenError,cNumbers,cCommentError,cSpaceError
384syn match cPreConditMatch display "^\s*\zs\%(%:\|#\)\s*\%(else\|endif\)\>"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385if !exists("c_no_if0")
Bram Moolenaar97293012011-07-18 19:40:27 +0200386 syn cluster cCppOutInGroup contains=cCppInIf,cCppInElse,cCppInElse2,cCppOutIf,cCppOutIf2,cCppOutElse,cCppInSkip,cCppOutSkip
Bram Moolenaarce001a32022-04-27 15:25:03 +0100387 syn region cCppOutWrapper start="^\s*\zs\%(%:\|#\)\s*if\s\+0\+\s*\%($\|//\|/\*\|&\)" end=".\@=\|$" contains=cCppOutIf,cCppOutElse,@NoSpell fold
388 syn region cCppOutIf contained start="0\+" matchgroup=cCppOutWrapper end="^\s*\%(%:\|#\)\s*endif\>" contains=cCppOutIf2,cCppOutElse
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000389 if !exists("c_no_if0_fold")
Bram Moolenaarce001a32022-04-27 15:25:03 +0100390 syn region cCppOutIf2 contained matchgroup=cCppOutWrapper start="0\+" end="^\s*\%(%:\|#\)\s*\%(else\>\|elif\s\+\%(0\+\s*\%($\|//\|/\*\|&\)\)\@!\|endif\>\)"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell fold
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200391 else
Bram Moolenaarce001a32022-04-27 15:25:03 +0100392 syn region cCppOutIf2 contained matchgroup=cCppOutWrapper start="0\+" end="^\s*\%(%:\|#\)\s*\%(else\>\|elif\s\+\%(0\+\s*\%($\|//\|/\*\|&\)\)\@!\|endif\>\)"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000393 endif
Bram Moolenaarce001a32022-04-27 15:25:03 +0100394 syn region cCppOutElse contained matchgroup=cCppOutWrapper start="^\s*\%(%:\|#\)\s*\%(else\|elif\)" end="^\s*\%(%:\|#\)\s*endif\>"me=s-1 contains=TOP,cPreCondit
395 syn region cCppInWrapper start="^\s*\zs\%(%:\|#\)\s*if\s\+0*[1-9]\d*\s*\%($\|//\|/\*\||\)" end=".\@=\|$" contains=cCppInIf,cCppInElse fold
396 syn region cCppInIf contained matchgroup=cCppInWrapper start="\d\+" end="^\s*\%(%:\|#\)\s*endif\>" contains=TOP,cPreCondit
Bram Moolenaar97293012011-07-18 19:40:27 +0200397 if !exists("c_no_if0_fold")
Bram Moolenaarce001a32022-04-27 15:25:03 +0100398 syn region cCppInElse contained start="^\s*\%(%:\|#\)\s*\%(else\>\|elif\s\+\%(0*[1-9]\d*\s*\%($\|//\|/\*\||\)\)\@!\)" end=".\@=\|$" containedin=cCppInIf contains=cCppInElse2 fold
Bram Moolenaar97293012011-07-18 19:40:27 +0200399 else
Bram Moolenaarce001a32022-04-27 15:25:03 +0100400 syn region cCppInElse contained start="^\s*\%(%:\|#\)\s*\%(else\>\|elif\s\+\%(0*[1-9]\d*\s*\%($\|//\|/\*\||\)\)\@!\)" end=".\@=\|$" containedin=cCppInIf contains=cCppInElse2
Bram Moolenaar97293012011-07-18 19:40:27 +0200401 endif
Bram Moolenaarce001a32022-04-27 15:25:03 +0100402 syn region cCppInElse2 contained matchgroup=cCppInWrapper start="^\s*\%(%:\|#\)\s*\%(else\|elif\)\%([^/]\|/[^/*]\)*" end="^\s*\%(%:\|#\)\s*endif\>"me=s-1 contains=cSpaceError,cCppOutSkip,@Spell
403 syn region cCppOutSkip contained start="^\s*\%(%:\|#\)\s*\%(if\>\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\%(%:\|#\)\s*endif\>" contains=cSpaceError,cCppOutSkip
404 syn region cCppInSkip contained matchgroup=cCppInWrapper start="^\s*\%(%:\|#\)\s*\%(if\s\+\%(\d\+\s*\%($\|//\|/\*\||\|&\)\)\@!\|ifdef\>\|ifndef\>\)" skip="\\$" end="^\s*\%(%:\|#\)\s*endif\>" containedin=cCppOutElse,cCppInIf,cCppInSkip contains=TOP,cPreProc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405endif
406syn region cIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
407syn match cIncluded display contained "<[^>]*>"
Bram Moolenaarce001a32022-04-27 15:25:03 +0100408syn match cInclude display "^\s*\zs\%(%:\|#\)\s*include\>\s*["<]" contains=cIncluded
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409"syn match cLineSkip "\\$"
Bram Moolenaar1aeaf8c2012-05-18 13:46:39 +0200410syn cluster cPreProcGroup contains=cPreCondit,cIncluded,cInclude,cDefine,cErrInParen,cErrInBracket,cUserLabel,cSpecial,cOctalZero,cCppOutWrapper,cCppInWrapper,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cString,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cParen,cBracket,cMulti,cBadBlock
Bram Moolenaarce001a32022-04-27 15:25:03 +0100411syn region cDefine start="^\s*\zs\%(%:\|#\)\s*\%(define\|undef\)\>" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell
412syn region cPreProc start="^\s*\zs\%(%:\|#\)\s*\%(pragma\>\|line\>\|warning\>\|warn\>\|error\>\)" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
Bram Moolenaar40962ec2018-01-28 22:47:25 +0100414" Optional embedded Autodoc parsing
415if exists("c_autodoc")
416 syn match cAutodocReal display contained "\%(//\|[/ \t\v]\*\|^\*\)\@2<=!.*" contains=@cAutodoc containedin=cComment,cCommentL
417 syn cluster cCommentGroup add=cAutodocReal
418 syn cluster cPreProcGroup add=cAutodocReal
419endif
420
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200421" be able to fold #pragma regions
422syn region cPragma start="^\s*#pragma\s\+region\>" end="^\s*#pragma\s\+endregion\>" transparent keepend extend fold
423
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424" Highlight User Labels
Bram Moolenaar97293012011-07-18 19:40:27 +0200425syn cluster cMultiGroup contains=cIncluded,cSpecial,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cUserCont,cUserLabel,cBitField,cOctalZero,cCppOutWrapper,cCppInWrapper,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cCppParen,cCppBracket,cCppString
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200426if s:ft ==# 'c' || exists("cpp_no_cpp11")
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200427 syn region cMulti transparent start='?' skip='::' end=':' contains=ALLBUT,@cMultiGroup,@Spell,@cStringGroup
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100428endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429" Avoid matching foo::bar() in C++ by requiring that the next char is not ':'
430syn cluster cLabelGroup contains=cUserLabel
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200431syn match cUserCont display "^\s*\zs\I\i*\s*:$" contains=@cLabelGroup
432syn match cUserCont display ";\s*\zs\I\i*\s*:$" contains=@cLabelGroup
Bram Moolenaar98a29d02021-01-18 19:55:44 +0100433if s:in_cpp_family
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200434 syn match cUserCont display "^\s*\zs\%(class\|struct\|enum\)\@!\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
435 syn match cUserCont display ";\s*\zs\%(class\|struct\|enum\)\@!\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
Bram Moolenaard8b77f72015-03-05 21:21:19 +0100436else
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200437 syn match cUserCont display "^\s*\zs\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
438 syn match cUserCont display ";\s*\zs\I\i*\s*:[^:]"me=e-1 contains=@cLabelGroup
Bram Moolenaard8b77f72015-03-05 21:21:19 +0100439endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440
441syn match cUserLabel display "\I\i*" contained
442
443" Avoid recognizing most bitfields as labels
Bram Moolenaar6d5ad4c2016-10-27 17:00:16 +0200444syn match cBitField display "^\s*\zs\I\i*\s*:\s*[1-9]"me=e-1 contains=cType
445syn match cBitField display ";\s*\zs\I\i*\s*:\s*[1-9]"me=e-1 contains=cType
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
Luca Saccarolaca0e9822023-12-24 18:57:02 +0100447if exists("c_functions")
448 syn match cFunction "\<\h\w*\ze\_s*("
449 endif
450
451if exists("c_function_pointers")
452 syn match cFunctionPointer "\%((\s*\*\s*\)\@<=\h\w*\ze\s*)\_s*(.*)"
453endif
454
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455if exists("c_minlines")
456 let b:c_minlines = c_minlines
457else
458 if !exists("c_no_if0")
459 let b:c_minlines = 50 " #if 0 constructs can be long
460 else
461 let b:c_minlines = 15 " mostly for () constructs
462 endif
463endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000464if exists("c_curly_error")
465 syn sync fromstart
466else
467 exec "syn sync ccomment cComment minlines=" . b:c_minlines
468endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470" Define the default highlighting.
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000471" Only used when an item doesn't have highlighting yet
472hi def link cFormat cSpecial
473hi def link cCppString cString
474hi def link cCommentL cComment
475hi def link cCommentStart cComment
476hi def link cLabel Label
477hi def link cUserLabel Label
478hi def link cConditional Conditional
479hi def link cRepeat Repeat
480hi def link cCharacter Character
481hi def link cSpecialCharacter cSpecial
482hi def link cNumber Number
483hi def link cOctal Number
484hi def link cOctalZero PreProc " link this to Error if you want
485hi def link cFloat Float
486hi def link cOctalError cError
487hi def link cParenError cError
488hi def link cErrInParen cError
489hi def link cErrInBracket cError
490hi def link cCommentError cError
491hi def link cCommentStartError cError
492hi def link cSpaceError cError
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200493hi def link cWrongComTail cError
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000494hi def link cSpecialError cError
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000495hi def link cCurlyError cError
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000496hi def link cOperator Operator
497hi def link cStructure Structure
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200498hi def link cTypedef Structure
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000499hi def link cStorageClass StorageClass
500hi def link cInclude Include
501hi def link cPreProc PreProc
502hi def link cDefine Macro
503hi def link cIncluded cString
504hi def link cError Error
505hi def link cStatement Statement
Bram Moolenaar97293012011-07-18 19:40:27 +0200506hi def link cCppInWrapper cCppOutWrapper
507hi def link cCppOutWrapper cPreCondit
508hi def link cPreConditMatch cPreCondit
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000509hi def link cPreCondit PreCondit
510hi def link cType Type
511hi def link cConstant Constant
512hi def link cCommentString cString
513hi def link cComment2String cString
514hi def link cCommentSkip cComment
515hi def link cString String
516hi def link cComment Comment
517hi def link cSpecial SpecialChar
518hi def link cTodo Todo
Bram Moolenaar5c736222010-01-06 20:54:52 +0100519hi def link cBadContinuation Error
Bram Moolenaar97293012011-07-18 19:40:27 +0200520hi def link cCppOutSkip cCppOutIf2
521hi def link cCppInElse2 cCppOutIf2
Bram Moolenaar2f3b5102014-11-19 18:54:17 +0100522hi def link cCppOutIf2 cCppOut
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000523hi def link cCppOut Comment
Luca Saccarolaca0e9822023-12-24 18:57:02 +0100524hi def link cFunction Function
525hi def link cFunctionPointer Function
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526
527let b:current_syntax = "c"
528
Bram Moolenaarbc488a72013-07-05 21:01:22 +0200529unlet s:ft
530
Bram Moolenaarb6b046b2011-12-30 13:11:27 +0100531let &cpo = s:cpo_save
532unlet s:cpo_save
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533" vim: ts=8