Files
learning_c/misc/my_math_lib/mymath.c

8 lines
63 B
C

#include <stdio.h>
int plusone(int nr)
{
return ++nr;
}