1
0
mirror of https://github.com/UzixLS/ehs5fs.git synced 2025-07-19 07:11:44 +03:00
This commit is contained in:
UzixLS
2015-09-21 10:11:42 +03:00
commit b1adffb30f
8 changed files with 764 additions and 0 deletions

8
main.h Normal file
View File

@ -0,0 +1,8 @@
#pragma once
#include "modem.h"
#define max(a,b) ((a)>(b))?(a):(b)
#define min(a,b) ((a)<(b))?(a):(b)
extern struct modem M;