1
0
mirror of https://frontier.innolan.net/github/AmigaExamples.git synced 2025-11-23 00:35:09 +00:00
Files
AmigaExamples/tools/fade/fade.h
2016-04-25 14:35:21 +10:00

27 lines
378 B
C

#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <getopt.h>
#include <stdarg.h>
typedef struct {
int verbose;
int numColors;
int fromGrey;
int fromBlack;
int steps;
char* toFile;
char* fromFile;
char* output;
char** argv;
} config_t;
extern config_t config;
extern void
abort_(const char * s, ...);