Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Daniel Franklin <joshuadfranklin@yahoo.com>2004-12-31 04:13:28 +0300
committerJoshua Daniel Franklin <joshuadfranklin@yahoo.com>2004-12-31 04:13:28 +0300
commitede7692fd26ecf4d668f6b0113f32e087d4527dc (patch)
tree849a222e4ed42f442b3a2f30012b00740946db2e /winsup/cygwin/path.sgml
parentd89a855e73a6ba51ce88b75b054fdc40b0dca859 (diff)
* path.sgml: Encode programming example with CDATA.
Diffstat (limited to 'winsup/cygwin/path.sgml')
-rw-r--r--winsup/cygwin/path.sgml2
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/path.sgml b/winsup/cygwin/path.sgml
index 8efa53f14..05e01d86b 100644
--- a/winsup/cygwin/path.sgml
+++ b/winsup/cygwin/path.sgml
@@ -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>