Skip to content
Snippets Groups Projects
binary_c_python.h 450 B
Newer Older
#pragma once
#ifndef BINARY_C_PYTHON_H
#define BINARY_C_PYTHON_H

/*
 * Include binary_C's API
 */
#include "binary_c_API.h"
#include "binary_c_API_prototypes.h"

/* Binary_c's python API prototypes */
int run_binary (char * argstring,
                char ** outstring,
                int * nbytes);

/* C macros */
#define BINARY_C_APITEST_VERSION 0.1
#define APIprint(...) APIprintf(__VA_ARGS__);
#define NO_OUTPUT

#endif // BINARY_C_C_PYTHON_H