system.h 412 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. #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. char *lub_system_tilde_expand(const char *path);
  15. _END_C_DECL
  16. #endif /* _lub_system_h */