File: add.cpp

package info (click to toggle)
mymake 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 672 kB
  • sloc: cpp: 5,688; lisp: 300; ansic: 195; sh: 86; makefile: 32
file content (6 lines) | stat: -rw-r--r-- 78 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#include "utils.h"
#include "add.h"

int add(int a, int b) {
	return a + b;
}