system.h 317 B

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