void embInit ( const char* pgm, ajint argc, char* const[] argv );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | pgm | Input | Application name, used as the name of the ACD file |
ajint | argc | Input | Number of arguments provided on the command line, usually passed as-is by the calling application. |
char* const[] | argv | Input | Actual arguments as an array of text. |
void | RETURN |
From EMBOSS 1.0.0
void embInitP ( const char* pgm, ajint argc, char* const[] argv, const char* package );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | pgm | Input | Application name, used as the name of the ACD file |
ajint | argc | Input | Number of arguments provided on the command line, usually passed as-is by the calling application. |
char* const[] | argv | Input | Actual arguments as an array of text. |
const char* | package | Input | Package name, used to find the ACD file |
void | RETURN |
From EMBOSS 1.0.0
void embInitPV ( const char* pgm, ajint argc, char* const[] argv, const char* package, const char* packversion );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | pgm | Input | Application name, used as the name of the ACD file |
ajint | argc | Input | Number of arguments provided on the command line, usually passed as-is by the calling application. |
char* const[] | argv | Input | Actual arguments as an array of text. |
const char* | package | Input | Package name, used to find the ACD file |
const char* | packversion | Input | Package version |
void | RETURN |
From EMBOSS 6.2.0