Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/* main.h - MeowMeow, a stream encoder/decoder */
#ifndef _MAIN_H
#define _MAIN_H
#include <stdio.h>
#define MEOWMEOW_VERSION "0.1.0"
#define CMD_MEOW "meow"
#define CMD_UNMEOW "unmeow"
typedef enum {
QUIET=0,
TERSE=1,
CHATTY=2,
} verbosity_t;
typedef struct options
{
FILE *in_stream;
FILE *out_stream;
verbosity_t verbose;
} options_t;
#define OPTIONS_INIT { stdin, stdout, QUIET }
#endif /* _MAIN_H */