X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fconst.h;h=4dbb17103f88f1115904f945e3be2749f7e96718;hp=a75caf23b53a033b9be6bc297c8932953647c859;hb=2fa436074ca9a5e87f39b696de832fa2188fcfc6;hpb=d57dd73ddbd960613cfc06bc4c9473b71d3598ef diff --git a/src/types/const.h b/src/types/const.h index a75caf2..4dbb171 100644 --- a/src/types/const.h +++ b/src/types/const.h @@ -34,11 +34,11 @@ struct psi_impl_def_val; struct psi_const { struct psi_token *token; struct psi_impl_type *type; - char *name; + zend_string *name; struct psi_impl_def_val *val; }; -struct psi_const *psi_const_init(struct psi_impl_type *type, const char *name, +struct psi_const *psi_const_init(struct psi_impl_type *type, zend_string *name, struct psi_impl_def_val *val); void psi_const_free(struct psi_const **constant_ptr); void psi_const_dump(int fd, struct psi_const *cnst);