예제 #1
0
파일: deflate.c 프로젝트: oe5hpm/dxlAPRS
extern void deflate_BEGIN(void)
{
   static int deflate_init = 0;
   if (deflate_init) return;
   deflate_init = 1;
   if (sizeof(uint8_t)!=1) X2C_ASSERT(0);
   if (sizeof(uint32_t)!=4) X2C_ASSERT(0);
   osi_BEGIN();
}
예제 #2
0
파일: aprstat.c 프로젝트: SQ6NTI/dxlAPRS
extern void aprstat_BEGIN(void)
{
   static int aprstat_init = 0;
   if (aprstat_init) return;
   aprstat_init = 1;
   aprstext_BEGIN();
   useri_BEGIN();
   aprspos_BEGIN();
   osi_BEGIN();
   aprsdecode_BEGIN();
   aprsstr_BEGIN();
   maptool_BEGIN();
}