1#if 0 2;*** 3;strcspn.asm - 4; 5; Copyright (c) Microsoft Corporation. All rights reserved. 6; 7;Purpose: 8; defines strcspn()- finds the length of the initial substring of 9; a string consisting entirely of characters not in a control string. 10; 11; NOTE: This stub module scheme is compatible with NT build 12; procedure. 13; 14;******************************************************************************* 15 16SSTRCSPN EQU 1 17INCLUDE STRSPN.ASM 18#else 19#define SSTRCSPN 1 20#include "strspn.s" 21#endif 22