21 lines
359 B
C
21 lines
359 B
C
|
|
/*
|
||
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/file.h to edit this template
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
* File: add.h
|
||
|
|
* Author: benn
|
||
|
|
*
|
||
|
|
* Created on February 24, 2023, 11:07 PM
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef ADD_H
|
||
|
|
#define ADD_H
|
||
|
|
|
||
|
|
int add(int x, int y);
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* ADD_H */
|
||
|
|
|