Adding modified Header files

This commit is contained in:
2024-02-03 11:15:07 +05:30
parent fcb8c87ca6
commit c82a702ab0
3 changed files with 12 additions and 7 deletions

Binary file not shown.

View File

@@ -6,7 +6,7 @@
* Description: * Description:
* *
* Version: 1.0 * Version: 1.0
* Created: 02/02/24 10:15:59 PM IST * Created: 03/02/24 10:48:50 AM IST
* Revision: none * Revision: none
* Compiler: gcc * Compiler: gcc
* *
@@ -16,6 +16,8 @@
* ===================================================================================== * =====================================================================================
*/ */
#ifndef __A__
#define __A__
#define max(a,b) (a > b? a : b) #define max(a,b) (a > b? a : b)
int sum(int a,int b); int sum(int a,int b)
#endif

View File

@@ -6,7 +6,7 @@
* Description: * Description:
* *
* Version: 1.0 * Version: 1.0
* Created: 02/02/24 10:18:06 PM IST * Created: 03/02/24 10:49:56 AM IST
* Revision: none * Revision: none
* Compiler: gcc * Compiler: gcc
* *
@@ -16,6 +16,9 @@
* ===================================================================================== * =====================================================================================
*/ */
#ifndef __B__
#define __B__
#include "A.h" #include "A.h"
#define min(a,b) (a > b? b:a ) #define min(a,b) (a > b? b:a )
int multiply ( int a , int b ); int multiply(int a,int b)
#endif