summaryrefslogtreecommitdiff
path: root/main.h
blob: 61f7b1cd474fca6c1441645729e3b544446f6276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2024 Zachary Smith
#ifndef MAIN_H_
#define MAIN_H_

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>

#include <assert.h>
#include <string.h>

#define VERSION "1.0.0"

enum return_t {
  SUCCESS = 0,
  ERR
};

void printhelp(void);
void printcopyright(void);
void printversion(void);
int main(int, char**);

#endif  // MAIN_H_