2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
|
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
|
-
+
-
|
return TH_ERROR;
}
}
/*
** Appends all array element names for the specified array variable to the
** specified list and returns TH_OK upon success. Any other return value
** indicates an error. If the current frame cannot be obtained, TH_ERROR
** indicates an error.
** is returned.
*/
int Th_ListAppendArray(
Th_Interp *interp,
const char *zVar, /* Pointer to variable name */
int nVar, /* Number of bytes at nVar */
char **pzList, /* OUT: List of array element names */
int *pnList /* OUT: Number of array element names */
|