Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_asize() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_ASIZE()

 DESCRIPTION

 The C_ASIZE() function determines the number of elements in a
 specified ClipOn array.  (Refer to Chapter 3 for a complete
 discussion about ClipOn arrays.)

 NOTES

 The numeric reference for the ClipOn array is a pointer to the
 array in memory.  Be careful not to change the value of this
 pointer, or the array will be unaccessible.

 SYNTAX

 C_ASIZE(array)

 PARAMETERS

 array (N) is the numeric reference variable for the ClipOn array.

 RETURNS

 C_ASIZE() returns the numeric size (number of elements) of the
 ClipOn array.

 EXAMPLES

 a1 = c_adeclare(100)       && Declare array for 100 elements
 a2 = c_adeclare(10000)     && Declare array for 10,000 elements

 ? c_asize(a1) --> 100      && Return the size
 ? c_asize(a2) --> 10000    && Return the size


See Also: C_ADECLARE() C_ARELEASE() C_APUT() C_AGET() C_ADUP()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson