nova proba

clubbing.h

Committer:
bosko001
Date:
2020-04-22
Revision:
9:893843262a1f
Parent:
5:c9a908749d4c
Child:
19:7bdb1a10043f

File content as of revision 9:893843262a1f:

#ifndef CLUBBING_H
#define CLUBBING_H

typedef  void(*PFV)(void);

#define IN_RANGE( MIN, a, MAX ) ((a >= MIN) ?  (( a<=MAX) ? 1:0) : 0)


int test_num( const char *s );
int test_ip( const char *s );

void Printf_niz( const char *s, const char *niz, int val );
void P_int(const char *s, int i );
void P_str(const char *s, const char *p );


#endif