* path.sgml: Encode programming example with CDATA.

This commit is contained in:
Joshua Daniel Franklin
2004-12-31 01:13:28 +00:00
parent d89a855e73
commit ede7692fd2
4 changed files with 19 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ buffer.</para>
<example>
<title>Example use of cygwin_posix_to_win32_path_list</title>
<programlisting>
<![CDATA[
char *_epath;
char *_win32epath;
_epath = _win32epath = getenv (NAME);
@@ -27,6 +28,7 @@ if (_epath != NULL && *_epath != 0
(cygwin_posix_to_win32_path_list_buf_size (_epath));
cygwin_posix_to_win32_path_list (_epath, _win32epath);
}
]]>
</programlisting>
</example>