diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-protect.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-protect.wiki index c0cee372..3a3ca453 100644 --- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-protect.wiki +++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-protect.wiki @@ -32,3 +32,5 @@ ISE Eiffel 4.4 and later. [[eif_wean]] }} + + diff --git a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-string.wiki b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-string.wiki index 826c8da1..390bfbe7 100644 --- a/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-string.wiki +++ b/documentation/current/solutions/other-languages/cecil/cecil-reference/eif-string.wiki @@ -1,24 +1,35 @@ [[Property:title|eif_string]] [[Property:weight|5]] [[Property:uuid|d203c941-df82-495a-55f3-791652b0e9ef]] -==SYNOPSYS== - -'''#include "eif_plug.h" +==Synopsis== -EIF_REFERENCE eif_string (char *''' ''string''''');''' + +#include "eif_plug.h" -==DESCRIPTION== -The '''eif_string()''' macro returns the corresponding Eiffel string corresponding to the C string ''string''. -The return value does not reference ''string''. +EIF_REFERENCE eif_string (char * string); + + +==Description== + +The eif_string macro returns an Eiffel string corresponding to the C string string. + +The return value does not reference string. + +==Notes== + +This function return an Eiffel reference, which must be protected with [[eif_protect]]. + +==Conformance== -==NOTES== -This function return an Eiffel reference, which must be protected with '''eif_protect()'''. -==CONFORMANCE== ISE Eiffel 4.5 and later. -==COMPATIBILITY== -'''eif_string()''' is equivalent to '''RTMS()''', which is deprecated. -==SEE ALSO== -'''eif_protect'''(1) , '''eif_create'''(1). + +==Compatibility== + +eif_string is equivalent to RTMS, which is deprecated. +{{SeeAlso|
+[[eif_protect]]
+[[eif_create]] }} +