1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* This file is part of ilk.
- *
- * Ilk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Ilk is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with ilk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef ILK_ACTS_H
- #define ILK_ACTS_H
- /*
- Include:
- #include <dirent.h>
- #include <rid.h>
- #include <stdint.h>
- #include <unfy/unfy.h>
- #include <rls/rls.h>
- #include <rls/rlsp.h>
- #include <nit/list.h>
- #include <nit/set.h>
- #include <nit/map.h>
- #include <nit/err.h>
- #include <nit/file.h>
- #include <nit/buf.h>
- #include <nit/gap.h>
- #include <ilk/utilize.h>
- */
- #ifndef STYLE_9
- #include <ilk/utilize.h>
- #endif
- typedef enum {
- ILK_ACT_NO,
- ILK_ACT_ADD,
- ILK_ACT_GENSYM,
- ILK_ACT_END,
- } Ilk_act_num;
- #define ILK_ACT_MAX (ILK_ACT_END - 1)
- extern Rls_act ilk_acts[];
- Ilk_grp *
- ilk_act_add2(Ilk_sys *sys, Ilk_act_num act_num);
- #endif
|