Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

51 linhas
815 B

============================================
Include directives
============================================
#include "some/path.h"
#include <stdint.h>
---
(program
(preproc_include (string))
(preproc_include (system_lib_string)))
============================================
Defines
============================================
#define SIZE 1024
#define SOMETHING \
x + \
y
---
(program
(preproc_define (identifier))
(preproc_define (identifier)))
============================================
Ifdefs
============================================
#ifndef SOMETHING
int x;
#endif
#ifdef SOMETHING_ELSE
#else
#endif
---
(program
(preproc_ifndef (identifier))
(var_declaration (identifier) (identifier))
(preproc_endif)
(preproc_ifdef (identifier))
(preproc_else)
(preproc_endif))