Displaying 3 results from an estimated 3 matches for "do_writelines".
2020 Jul 25
2
Guidelines when to use LF vs CRLF ("\n" vs. "\r\n") on Windows for new lines (line endings)?
...quot;\n", useBytes = FALSE)
# Excerpt from the documentation:
# Normally writeLines is used with a text-mode connection,
# and the default separator is converted to the normal separator
# for that platform (LF on Unix/Linux, CRLF on Windows).
# calls internally do_writelines():
# https://github.com/wch/r-source/blob/8db7b85953127f364f52d201ec057911db4601e5/src/main/connections.c#L4023
# But: Where is the conversion done (hidden in the call to Riconv()?)
2006 May 02
1
compile R on Solaris 9
...tions.c:2145: structure has no member named `open64'
connections.c: In function `do_open':
connections.c:2192: structure has no member named `open64'
connections.c: In function `do_readLines':
connections.c:2462: structure has no member named `open64'
connections.c: In function `do_writelines':
connections.c:2556: structure has no member named `open64'
connections.c: In function `do_readbin':
connections.c:2692: structure has no member named `open64'
connections.c: In function `do_writebin':
connections.c:2895: structure has no member named `open64'
connections.c...
2020 Jul 25
0
Guidelines when to use LF vs CRLF ("\n" vs. "\r\n") on Windows for new lines (line endings)?
...t; # Excerpt from the documentation:
> # Normally writeLines is used with a text-mode connection,
> # and the default separator is converted to the normal separator
> # for that platform (LF on Unix/Linux, CRLF on Windows).
>
> # calls internally do_writelines():
> # https://github.com/wch/r-source/blob/8db7b85953127f364f52d201ec057911db4601e5/src/main/connections.c#L4023
> # But: Where is the conversion done (hidden in the call to Riconv()?)
>
> ______________________________________________
> R-devel at r-project.org mailing l...