Last active
September 30, 2019 21:01
-
-
Save rvantonder/d1dbd38c23907269b84b9b4e664b01f7 to your computer and use it in GitHub Desktop.
Language definition for C without macros
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"user_defined_delimiters":[ | |
[ | |
"(", | |
")" | |
], | |
[ | |
"{", | |
"}" | |
], | |
[ | |
"[", | |
"]" | |
] | |
], | |
"escapable_string_literals":{ | |
"delimiters":[ | |
"\"", | |
"'" | |
], | |
"escape_character":"\\" | |
}, | |
"raw_string_literals": [], | |
"comments":[ | |
[ | |
"Multiline", | |
"/*", | |
"*/" | |
], | |
[ | |
"Until_newline", | |
"//" | |
], | |
[ | |
"Until_newline", | |
"#" | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment