Function:s2ldev
From S2PLOT
s2ldev
List the available S2PLOT devices on stdout.
Prototype
void s2ldev();
Description
List the available S2PLOT devices on stdout.
See Also
s2open | Open the S2PLOT device. |
s2opend | Open the S2PLOT device (device string version). |
s2opendo | Open the S2PLOT device (device string version, ignoring command line arguments). |
PGPLOT Equivalent
Code Example
#include <stdio.h>
#include <stdlib.h>
#include "s2plot.h"
int main(int argc, char *argv[])
{
s2ldev();
return 1;
}
Back to S2PLOT function list.