system.h 316 B

1234567891011121314151617181920
  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. _BEGIN_C_DECL
  10. bool_t lub_system_test(int argc, char **argv);
  11. bool_t lub_system_argv_test(const lub_argv_t *argv);
  12. bool_t lub_system_line_test(const char *line);
  13. _END_C_DECL
  14. #endif /* _lub_system_h */