sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

sum_library.c (41B)


      1 int sum(int a, int b) {
      2 	return a + b;
      3 }