css.h
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* 
  2.  *  css.h
  3.  *
  4.  *  Released under the version 2 of the GPL.
  5.  *
  6.  *  Copyright 1999 Derek Fawcus / M Roberts
  7.  *
  8.  *  This file contains declarations common to more than one CSS program#
  9.  *
  10.  */
  11. #ifndef CSS_H
  12. #define CSS_H
  13. typedef unsigned char byte;
  14. /*
  15. Tables defined in csstable.c
  16. */
  17. extern byte CSSvarients[32];
  18. extern byte CSSsecret[5];
  19. extern byte CSSmangle0[256], CSSmangle1[256], CSSmangle2[256];
  20. extern byte reverse[256];
  21. /*
  22. Debug functions defined in cssdebug.c
  23. */
  24. void print_tab( byte const * b, int len);
  25. #endif