mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
24 lines
508 B
C
24 lines
508 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: A.h
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 03/02/24 10:48:50 AM IST
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef __A__
|
|
#define __A__
|
|
#define max(a,b) (a > b? a : b)
|
|
int sum(int a,int b)
|
|
#endif
|