Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
573 B

  1. /* form.h
  2. *
  3. * Copyright (c) 1991-2001, Larry Wall
  4. *
  5. * You may distribute under the terms of either the GNU General Public
  6. * License or the Artistic License, as specified in the README file.
  7. *
  8. */
  9. #define FF_END 0
  10. #define FF_LINEMARK 1
  11. #define FF_LITERAL 2
  12. #define FF_SKIP 3
  13. #define FF_FETCH 4
  14. #define FF_CHECKNL 5
  15. #define FF_CHECKCHOP 6
  16. #define FF_SPACE 7
  17. #define FF_HALFSPACE 8
  18. #define FF_ITEM 9
  19. #define FF_CHOP 10
  20. #define FF_LINEGLOB 11
  21. #define FF_DECIMAL 12
  22. #define FF_NEWLINE 13
  23. #define FF_BLANK 14
  24. #define FF_MORE 15