16 lines
262 B
C
16 lines
262 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../print.h"
|
|
|
|
#include "struct.h"
|
|
#include "print.h"
|
|
|
|
void not_expression_print(
|
|
struct expression* super)
|
|
{
|
|
struct not_expression* this = (void*) super;
|
|
|
|
printf("(!"), expression_print(this->inner), printf(")");
|
|
}
|
|
|