17 lines
209 B
C
17 lines
209 B
C
#ifndef PCKR_H
|
|
#define PCKR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
#include "aliases.h"
|
|
|
|
i32 run_pckr(i32 argc, char *argv[]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // !PCKR_H
|