Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <stdlib.h> char *gettsn(void);
|
Return val. | Pointer to the task sequence number (TSN). |
Note |
|
Example | #include <stdio.h> #include <stdlib.h> int main(void) { printf("Example showing the use of gettsn():\n"); printf("The TSN number of the program %s : %s\n", getpgmname(), gettsn()); return 0; } |