strip command to the R build system. I am also not sure whether
stripping the object files is allowed for R packages, since it can make
debugging harder.
With kind regards,
Pieter Eendebak
[[alternative HTML version deleted]]
__
R-package-devel@r
On Fri, May 29, 2015 at 1:56 PM, Dirk Eddelbuettel wrote:
>
> On 29 May 2015 at 11:44, Pieter Eendebak wrote:
> | Dear developers,
> |
> | How can I specify the license for my package when my package includes
> some
> | code with other licenses (and different copyright hold
(different author)
With kind regards,
Pieter Eendebak
[[alternative HTML version deleted]]
__
R-package-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-package-devel
, object_t object) {
FILE *fid = fopen(filename, 'wt');
print_structure(fid, object);
fclose(fid);
}
How can I keep using this code in R without duplicating the print_structure
function (once for output to console, and once for output to file)?
With kind regards,
Piete