Diff for /libaitcfg/inc/aitcfg.h between versions 1.15.2.1 and 1.17.2.1

version 1.15.2.1, 2014/04/14 19:57:03 version 1.17.2.1, 2021/11/25 23:44:52
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004 - 2014Copyright 2004 - 2021
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 173  int cfgReadConfig(FILE *f, cfg_root_t * __restrict cfg Line 173  int cfgReadConfig(FILE *f, cfg_root_t * __restrict cfg
  */   */
 int cfgWriteConfig(FILE *f, cfg_root_t * __restrict cfg, int whitespace);  int cfgWriteConfig(FILE *f, cfg_root_t * __restrict cfg, int whitespace);
 /*  /*
    * cfgWriteConfigRaw() - Write config from memory by list
    *
    * @f = File handle
    * @cfg = Config root
    * @whitespace = Additional whitespace characters to file
    * return: -1 error or 0 ok
    */
   int cfgWriteConfigRaw(FILE *f, cfg_root_t * __restrict cfg, int whitespace);
   /*
  * cfgConcatConfig() - Concat two configs into one   * cfgConcatConfig() - Concat two configs into one
  *   *
  * @cfg = Config root   * @cfg = Config root
Line 189  int cfgConcatConfig(cfg_root_t * __restrict cfg, cfg_r Line 198  int cfgConcatConfig(cfg_root_t * __restrict cfg, cfg_r
  */   */
 int cfgMergeConfig(cfg_root_t * __restrict cfg, cfg_root_t * __restrict add_cfg);  int cfgMergeConfig(cfg_root_t * __restrict cfg, cfg_root_t * __restrict add_cfg);
   
   /*
    * cfg_dumpCfg() - dump config data
    *
    * @cfg = Config root
    * return: none
    */
   void cfg_dumpCfg(cfg_root_t * __restrict cfg);
 /*  /*
  * cfg_getSection() - Get entire section attributes into array   * cfg_getSection() - Get entire section attributes into array
  *   *

Removed from v.1.15.2.1  
changed lines
  Added in v.1.17.2.1


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