Diff

Differences From Artifact [0e36c923df]:

To Artifact [c2abbb6e8f]:


58
59
60
61
62
63
64
65

66
67
68
58
59
60
61
62
63
64

65
66
67
68







-
+



#define lenof(x) ( (sizeof((x))) / (sizeof(*(x))))
#endif

#ifndef min
#define min(x,y) ( (x) < (y) ? (x) : (y) )
#endif
#ifndef max
#define max(x,y) ( (x) < (y) ? (x) : (y) )
#define max(x,y) ( (x) > (y) ? (x) : (y) )
#endif

#endif