raising the head after a three-weeks refactoring
[m6w6/ext-psi] / src / types / impl_type.h
index e1197e7fa6afd05c90e11bbcd5766bbbe9300318..3a5ce21b682842667cf95c1c33441ded1a6b3b29 100644 (file)
 
 #include "token.h"
 
-typedef struct impl_type {
+struct psi_impl_type {
+       struct psi_token *token;
        char *name;
        token_t type;
-} impl_type;
+};
 
-impl_type *init_impl_type(token_t type, const char *name);
-void free_impl_type(impl_type *type);
+struct psi_impl_type *psi_impl_type_init(token_t type, const char *name);
+void psi_impl_type_free(struct psi_impl_type **type_ptr);
 
 #endif