| GENERAL DESCRIPTION |
This a function which will return a 1/0 value,
indicating either the modifier can be used with the CPT code or not. If a
modifier is not passed in the 1/0 value will relate to whether the code passed
is a valid CPT code. There are two functions within the routine.
MODE(CODE,MOD) ; Returns 1/0 if modifier can be used with code
;
; Input: CODE = CPT code (external format)
; MOD = CPT modifier [Optional] (external format)
; Output: 0/1 = 0 cannot be used with code
; 0 not a valid CPT code if modifier not passed in
; 1 can be used with code
; 1 a valid CPT code if modifier not passed in
MODI(CODE,MOD) ; Returns 1/0 if modifier can be used with code
;
; Input: CODE = CPT code (internal format)
; MOD = CPT modifier [Optional] (internal format)
; Output: 0/1 = 0 cannot be used with code
; 0 not valid CPT code if modifier not passed in
; 1 can be used with code
; 1 valid CPT code if modifier not passed in
|