sizeof

The sizeof function

The sizeof(arg) compiler function returns the size of the variable you pass into it. The syntax of the sizeof function is shown below.

 dseg segment
   arg byte
   argsize byte
 dseg ends
 // ...
 set argsize, sizeof(arg) // argsize == 1

Generated by  doxygen 1.6.2