25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

51 satır
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))