Diff for /libaitcfg/src/queue.c between versions 1.3 and 1.4

version 1.3, 2009/10/19 15:00:10 version 1.4, 2010/03/22 14:53:49
Line 248  inline const u_char *cfg_GetAttribute(sl_config * __re Line 248  inline const u_char *cfg_GetAttribute(sl_config * __re
         return av->psValue;          return av->psValue;
 }  }
   
   /*
    * cfg_FirstItem() Get first item from config list and return his value
    * @cfg = Head list element
    * return: NULL if no items in list; !=NULL first pair item
   */
   inline struct tagPair *cfg_FirstItem(sl_config * __restrict cfg)
   {
           return cfg->slh_first;
   }
   
 // --------------------------------------------------------------  // --------------------------------------------------------------
   
 /*  /*

Removed from v.1.3  
changed lines
  Added in v.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>