Mercurial > pub > dyncall > bindings
comparison R/rdyncall/demo/qsort.R @ 0:0cfcc391201f
initial from svn dyncall-1745
author | Daniel Adler |
---|---|
date | Thu, 19 Mar 2015 22:26:28 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0cfcc391201f |
---|---|
1 dynbind(c("msvcrt","c","c.so.6"), "qsort(piip)v;") | |
2 cb <- new.callback("pp)i",function(px,py){ | |
3 x <- .unpack(px, 0, "d") | |
4 y <- .unpack(py, 0, "d") | |
5 if (x > y) return(1) else if (x == y) return(0) else return(-1) | |
6 }) | |
7 x <- rnorm(100) | |
8 qsort(x,length(x),8,cb) | |
9 | |
10 |