/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 *
 * 
 * File:   defines.h
 * Author: pgess
 *
 * Created on May 7, 2019, 8:11 PM
 */

#ifndef DEFINES_H
#define DEFINES_H

typedef int (*FnNoArgs)();
typedef int (*Fn1Args)(int);
typedef int (*Fn2args)(int, int);
typedef int (*Fn3args)(int, int, int);


#endif /* DEFINES_H */

