X-Git-Url: https://git.llucax.com/software/mutest.git/blobdiff_plain/6fa3862da83a93a63c025035d8e614eaac4f5cab..d5be024b1cc1a456cd9726d85a7e108e1818ae7f:/sample/factorial.c diff --git a/sample/factorial.c b/sample/factorial.c index c178fa0..78d43e9 100644 --- a/sample/factorial.c +++ b/sample/factorial.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 a factorial. + * + * Please, read the README file for more details. + */ unsigned factorial(unsigned x) { if (x <= 1)