mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
21 lines
428 B
Plaintext
21 lines
428 B
Plaintext
---input---
|
|
#ifdef MACRO
|
|
#ifndef MACRO
|
|
#undef MACRO
|
|
|
|
---tokens---
|
|
'#ifdef' Comment.Preproc
|
|
' ' Text.Whitespace
|
|
'MACRO' Comment.Preproc
|
|
'\n' Text.Whitespace
|
|
|
|
'#ifndef' Comment.Preproc
|
|
' ' Text.Whitespace
|
|
'MACRO' Comment.Preproc
|
|
'\n' Text.Whitespace
|
|
|
|
'#undef' Comment.Preproc
|
|
' ' Text.Whitespace
|
|
'MACRO' Comment.Preproc
|
|
'\n' Text.Whitespace
|