aboutsummaryrefslogtreecommitdiffstats
path: root/example/calc.h
blob: 70950baf0824943c9473b22b62f21fbb8e5ee56d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ==========================================================================
    Licensed under BSD 2clause license. See LICENSE file for more information
    Author: Michał Łyszczek <michal.lyszczek@bofc.pl>
   ========================================================================== */

#ifndef CALC_H
#define CALC_H 1

int add(int a, int b);
int sub(int a, int b);

#endif