| Add a variable to the array |
| Declaration: |
| void ferite_uarray_add( FeriteScript *script, FeriteUnifiedArray *array, FeriteVariable *var, char *id, int pos ) |
| Description: |
| The hash id can be NULL - in which case the variable wont be hashed. If it isn't NULL the variable gets added to the array and also hashed in aswell. The variable can either be placed at the beginning or at the end of the array. Use either FE_ARRAY_ADD_AT_END or FE_ARRAY_ADD_AT_START to place the variable at the end or start respectively. |
| Parameters: |
| Parameter #1: FeriteScript *script - The script |
| Parameter #2: FeriteUnifiedArray *array - The array to add to |
| Parameter #3: FeriteVariable *var - The variable to add |
| Parameter #4: char *id - The hash id |
| Parameter #5: int pos - The position in the array where the variable should be put |