File: R-graphics-engine.c

package info (click to toggle)
r-cran-r.devices 2.17.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 548 kB
  • sloc: makefile: 15; sh: 13; ansic: 8
file content (10 lines) | stat: -rw-r--r-- 143 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#include <Rinternals.h>
#include <R_ext/GraphicsEngine.h>
#include <stdio.h>

int main(void)
{
	printf("%d", R_GE_getVersion());

	return 0;
}