/services/fconf/fconf_test.c

http://ftk.googlecode.com/ · C · 16 lines · 12 code · 4 blank · 0 comment · 0 complexity · c8f532598a610069b3210608d16caf09 MD5 · raw file

  1. #include "fconf.c"
  2. #include "fconf_client.h"
  3. #include "fbus_service.h"
  4. int main(int argc, char* argv[])
  5. {
  6. fbus_service_init(argc, argv);
  7. FConf* fconf = fconf_client_create();
  8. fconf_test(fconf);
  9. fbus_service_run();
  10. fconf_destroy(fconf);
  11. return 0;
  12. }