(root)/
libredwg-0.13/
test/
unit-testing/
block.c
       1  #define DWG_TYPE DWG_TYPE_BLOCK
       2  #include "common.c"
       3  
       4  void
       5  api_process (dwg_object *obj)
       6  {
       7    int error;
       8    char *name;
       9    dwg_ent_block *block = dwg_object_to_BLOCK (obj);
      10    int isnew;
      11  
      12    CHK_ENTITY_UTF8TEXT_W_OLD (block, BLOCK, name);
      13  }