]> git.llucax.com Git - software/mutest.git/blob - sample/sum.c
doc: Highlight syntax of code examples
[software/mutest.git] / sample / sum.c
1 /*
2  * This file is part of mutest, a simple micro unit testing framework for C.
3  *
4  * mutest was written by Leandro Lucarella <llucax@gmail.com> and is released
5  * under the BOLA license, please see the LICENSE file or visit:
6  * http://blitiri.com.ar/p/bola/
7  *
8  * This is an example module that calculates the addition of two integers.
9  *
10  * Please, read the README file for more details.
11  */
12
13 int sum(int x, int y) {
14         return x + y;
15 }
16