system.h 363 B

12345678910111213141516171819
  1. /*
  2. * system.h
  3. *
  4. */
  5. #ifndef _lub_system_h
  6. #define _lub_system_h
  7. #include <stddef.h>
  8. #include "lub/c_decl.h"
  9. #include "lub/types.h"
  10. #include "lub/argv.h"
  11. _BEGIN_C_DECL bool_t lub_system_test(int argc, char **argv);
  12. bool_t lub_system_argv_test(const lub_argv_t * argv);
  13. bool_t lub_system_line_test(const char *line);
  14. _END_C_DECL
  15. #endif /* _lub_system_h */