X-Git-Url: https://git.llucax.com/software/mutest.git/blobdiff_plain/6fa3862da83a93a63c025035d8e614eaac4f5cab..d5be024b1cc1a456cd9726d85a7e108e1818ae7f:/sample/sum.c diff --git a/sample/sum.c b/sample/sum.c index 4d45974..94fd492 100644 --- a/sample/sum.c +++ b/sample/sum.c @@ -1,3 +1,14 @@ +/* + * This file is part of mutest, a simple micro unit testing framework for C. + * + * mutest was written by Leandro Lucarella and is released + * under the BOLA license, please see the LICENSE file or visit: + * http://blitiri.com.ar/p/bola/ + * + * This is an example module that calculates the addition of two integers. + * + * Please, read the README file for more details. + */ int sum(int x, int y) { return x + y;