npcommon.h
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:0k
源码类别:

系统编程

开发平台:

Visual C++

  1. #include <npdefs.h>
  2. #include <netlib.h>
  3. #define ADVANCE(p)    (p += IS_LEAD_BYTE(*p) ? 2 : 1)
  4. #define SPN_SET(bits,ch)    bits[(ch)/8] |= (1<<((ch) & 7))
  5. #define SPN_TEST(bits,ch)    (bits[(ch)/8] & (1<<((ch) & 7)))