delete.h 779 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * delete.h - Object deletion
  3. *
  4. * Written 2009 by Werner Almesberger
  5. * Copyright 2009 by Werner Almesberger
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #ifndef DELETE_H
  13. #define DELETE_H
  14. #include "obj.h"
  15. void delete_vec(struct vec *vec);
  16. void delete_obj(struct obj *obj);
  17. void delete_row(struct row *row);
  18. void delete_column(struct table *table, int n);
  19. void delete_table(struct table *table);
  20. void delete_loop(struct loop *loop);
  21. void delete_frame(struct frame *frame);
  22. void destroy(void);
  23. int undelete(void);
  24. void purge(void);
  25. #endif /* !DELETE_H */