00001 #ifndef ALLG_H 00002 #define ALLG_H 00003 #include<stddef.h> 00004 #include<stdint.h> 00005 #include<sys/types.h> 00006 #include<string.h> 00007 typedef unsigned char octet_t; 00008 00009 00010 00011 inline size_t min(size_t kl1,size_t kl2) 00012 { 00013 return (kl1 < kl2 ? kl1 : kl2); 00014 } 00015 #endif