libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

base.c (157B)


      1 #include "err.h"
      2 #include "config.h"
      3 
      4 
      5 int lq_init() {
      6 	int r;
      7 
      8 	lq_err_init();
      9 	r = lq_config_init();
     10 	return r;
     11 }
     12 
     13 void lq_finish() {
     14 	lq_config_free();
     15 }