manage.h 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef GRASS_MANAGEDEFS_H
  2. #define GRASS_MANAGEDEFS_H
  3. /* add_elem.c */
  4. void M__add_element(const char *, const char *);
  5. /* do_copy.c */
  6. int M_do_copy(int, const char *, const char *, const char *);
  7. /* do_list.c */
  8. void M_do_list(int, const char *);
  9. /* do_remove.c */
  10. int M_do_remove(int, const char *);
  11. /* do_rename.c */
  12. int M_do_rename(int, const char *, const char *);
  13. /* empty.c */
  14. int M__empty(char *);
  15. /* find.c */
  16. const char *M_find(int, char *, const char *);
  17. /* get_len.c */
  18. int M__get_description_len(int);
  19. /* list.c */
  20. int M_get_element(const char *);
  21. const struct list *M_get_list(int);
  22. /* read_list.c */
  23. int M_read_list(int, int *);
  24. /* option.c */
  25. struct Option* M_define_option(int, const char *, int);
  26. const char *M_get_options(int);
  27. const char *M_get_option_desc(int);
  28. /* show_elem.c */
  29. void M_show_elements(void);
  30. /* sighold.c */
  31. int M__hold_signals(int);
  32. #endif