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
#include <stdio.h> | |
#include <string.h> | |
#define WRAP 5 | |
static const char vens[] = { | |
'-', /* Va */ | |
'/', /* Vi */ | |
'\\', /* Vo */ | |
'^' /* Vu */ |
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
#include <stdio.h> | |
#define IMAGE_WIDTH 512 | |
#define IMAGE_HEIGHT 512 | |
#ifdef LIMITED_COLORS | |
#define LOWERTHANSET(_variable, _value) \ | |
if (_variable < _value) { \ | |
_variable = _value; \ | |
} |