Files
eiffel-org/documentation/trunk/solutions/other-languages/cecil/cecil-reference/eif-string.wiki
eiffel-org 5e7183f738 Renamed current as trunk.
git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1433 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
2015-09-23 17:16:49 +00:00

38 lines
770 B
Plaintext

[[Property:title|eif_string]]
[[Property:weight|5]]
[[Property:uuid|d203c941-df82-495a-55f3-791652b0e9ef]]
==Synopsis==
<code lang="text">
#include "eif_plug.h"
EIF_REFERENCE eif_string (char * string);
</code>
==Description==
The <code lang="text">eif_string</code> macro returns an Eiffel string corresponding to the C string <code lang="text">string</code>.
The return value does not reference <code lang="text">string</code>.
==Notes==
This function return an Eiffel reference, which must be protected with [[eif_protect]].
==Conformance==
ISE Eiffel 4.5 and later.
==Compatibility==
<code lang="text">eif_string</code> is equivalent to <code lang="text">RTMS</code>, which is deprecated.
{{SeeAlso| <br/>
[[eif_protect]]<br/>
[[eif_create]] }}