Root/
| 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 | |
| 13 | |
| 14 | #ifndef DELETE_H |
| 15 | #define DELETE_H |
| 16 | |
| 17 | |
| 18 | #include "obj.h" |
| 19 | |
| 20 | |
| 21 | void delete_vec(struct vec *vec); |
| 22 | void delete_obj(struct obj *obj); |
| 23 | void delete_row(struct row *row); |
| 24 | void delete_column(struct table *table, int n); |
| 25 | void delete_table(struct table *table); |
| 26 | void delete_loop(struct loop *loop); |
| 27 | void delete_frame(struct frame *frame); |
| 28 | void destroy(void); |
| 29 | int undelete(void); |
| 30 | void purge(void); |
| 31 | |
| 32 | #endif /* !DELETE_H */ |
| 33 |
Branches:
master
