| 15 |
|
|
| 16 |
|
/* handles the members functions */ |
| 17 |
|
|
| 18 |
< |
extern struct node_tag* members_2( int a, int b ); |
| 19 |
< |
extern struct node_tag* members_3( int a, int b, int c ); |
| 20 |
< |
extern struct node_tag* members_4( int a, int b, int c, int d ); |
| 18 |
> |
extern struct node_tag* members( char * list_str ); |
| 19 |
|
|
| 20 |
|
/* handles the constraint funtion */ |
| 21 |
|
|
| 22 |
< |
extern struct node_tag* constraint( double constraint_val ); |
| 22 |
> |
extern struct node_tag* constraint( char * list_str ); |
| 23 |
|
|
| 24 |
|
/* handles the orientation function */ |
| 25 |
|
|
| 26 |
< |
extern struct node_tag* orientation( double x, double y, double z ); |
| 26 |
> |
extern struct node_tag* orientation( char * list_str ); |
| 27 |
|
|
| 28 |
|
/* handles the position function */ |
| 29 |
|
|
| 30 |
< |
extern struct node_tag* position( double x, double y, double z ); |
| 30 |
> |
extern struct node_tag* position( char * list_str ); |
| 31 |
|
|
| 32 |
|
/* handles the various block modes */ |
| 33 |
|
|
| 38 |
|
extern struct node_tag* bond_blk( int index, struct node_tag* stmt_list ); |
| 39 |
|
extern struct node_tag* bend_blk( int index, struct node_tag* stmt_list ); |
| 40 |
|
extern struct node_tag* torsion_blk( int index, struct node_tag* stmt_list ); |
| 43 |
– |
extern struct node_tag* member_blk( int index, struct node_tag* stmt_list ); |
| 41 |
|
extern struct node_tag* component_blk( struct node_tag* stmt_list ); |
| 42 |
|
|
| 43 |
+ |
int count_tokens(char *line, char *delimiters); |
| 44 |
|
#endif |