X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Fident.h;h=a1fbc1f4872fa425856fa85f58d110bf78988075;hb=fefcae4fca6f882e5475238a4aa64fab4b2a4469;hp=0c6c0ed650fcee06a19822e606f7fc9b1b0e2451;hpb=4d6c06673e8fc5d144bfe16397697ff2812fc22e;p=libfirm diff --git a/include/libfirm/ident.h b/include/libfirm/ident.h index 0c6c0ed65..a1fbc1f48 100644 --- a/include/libfirm/ident.h +++ b/include/libfirm/ident.h @@ -67,7 +67,7 @@ FIRM_API ident *new_id_from_chars(const char *str, size_t len); * @return cp a string * @see new_id_from_str(), new_id_from_chars(), get_id_strlen() */ -FIRM_API const char *get_id_str(const ident *id); +FIRM_API const char *get_id_str(ident *id); /** * Returns the length of the string represented by an ident. @@ -76,7 +76,7 @@ FIRM_API const char *get_id_str(const ident *id); * @return len the length of the string * @see new_id_from_str(), new_id_from_chars(), get_id_str() */ -FIRM_API size_t get_id_strlen(const ident *id); +FIRM_API size_t get_id_strlen(ident *id); /** * Returns true if prefix is a prefix of an ident. @@ -85,7 +85,7 @@ FIRM_API size_t get_id_strlen(const ident *id); * @param id the ident * @see new_id_from_str(), new_id_from_chars(), get_id_str(), id_is_prefix() */ -FIRM_API int id_is_prefix(const ident *prefix, const ident *id); +FIRM_API int id_is_prefix(ident *prefix, ident *id); /** * Returns true if suffix is a suffix of an ident. @@ -94,7 +94,7 @@ FIRM_API int id_is_prefix(const ident *prefix, const ident *id); * @param id the ident * @see new_id_from_str(), new_id_from_chars(), get_id_str(), id_is_prefix() */ -FIRM_API int id_is_suffix(const ident *suffix, const ident *id); +FIRM_API int id_is_suffix(ident *suffix, ident *id); /** * Return true if an ident contains a given character. @@ -103,7 +103,7 @@ FIRM_API int id_is_suffix(const ident *suffix, const ident *id); * @param c the character * @see new_id_from_str(), new_id_from_chars(), get_id_str() */ -FIRM_API int id_contains_char(const ident *id, char c); +FIRM_API int id_contains_char(ident *id, char c); /** * helper function for creating unique idents. It contains an internal counter @@ -117,20 +117,20 @@ FIRM_API ident *id_unique(const char *tag); FIRM_API ident *id_mangle_entity(const ir_entity *ent); /** mangle underscore: Returns a new ident that represents first_scnd. */ -FIRM_API ident *id_mangle_u(const ident *first, const ident* scnd); +FIRM_API ident *id_mangle_u(ident *first, ident* scnd); /** mangle dot: Returns a new ident that represents first.scnd. */ -FIRM_API ident *id_mangle_dot(const ident *first, const ident* scnd); +FIRM_API ident *id_mangle_dot(ident *first, ident* scnd); /** mangle: Returns a new ident that represents firstscnd. */ -FIRM_API ident *id_mangle(const ident *first, const ident* scnd); +FIRM_API ident *id_mangle(ident *first, ident* scnd); /** Returns a new ident that represents 'prefixscndsuffix'. */ -FIRM_API ident *id_mangle3(const char *prefix, const ident *middle, +FIRM_API ident *id_mangle3(const char *prefix, ident *middle, const char *suffix); /** returns a mangled name for a Win32 function using its calling convention */ -FIRM_API ident *id_decorate_win32_c_fkt(const ir_entity *ent, const ident *id); +FIRM_API ident *id_decorate_win32_c_fkt(const ir_entity *ent, ident *id); #include "end.h"