getchar.pro
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* getchar.c */
  2. char_u *get_recorded __ARGS((void));
  3. char_u *get_inserted __ARGS((void));
  4. int stuff_empty __ARGS((void));
  5. void flush_buffers __ARGS((int typeahead));
  6. void ResetRedobuff __ARGS((void));
  7. void saveRedobuff __ARGS((void));
  8. void restoreRedobuff __ARGS((void));
  9. void AppendToRedobuff __ARGS((char_u *s));
  10. void AppendCharToRedobuff __ARGS((int c));
  11. void AppendNumberToRedobuff __ARGS((long n));
  12. void stuffReadbuff __ARGS((char_u *s));
  13. void stuffcharReadbuff __ARGS((int c));
  14. void stuffnumReadbuff __ARGS((long n));
  15. int start_redo __ARGS((long count, int old_redo));
  16. int start_redo_ins __ARGS((void));
  17. void set_redo_ins __ARGS((void));
  18. void stop_redo_ins __ARGS((void));
  19. int ins_typebuf __ARGS((char_u *str, int noremap, int offset, int nottyped));
  20. int typebuf_typed __ARGS((void));
  21. int typebuf_maplen __ARGS((void));
  22. void del_typebuf __ARGS((int len, int offset));
  23. int save_typebuf __ARGS((void));
  24. int openscript __ARGS((char_u *name));
  25. void updatescript __ARGS((int c));
  26. int vgetc __ARGS((void));
  27. int vpeekc __ARGS((void));
  28. int char_avail __ARGS((void));
  29. void vungetc __ARGS((int c));
  30. int inchar __ARGS((char_u *buf, int maxlen, long wait_time));
  31. int do_map __ARGS((int maptype, char_u *keys, int mode, int abbrev));
  32. int get_map_mode __ARGS((char_u **cmdp, int forceit));
  33. void map_clear __ARGS((char_u *cmdp, int forceit, int abbr));
  34. int check_abbr __ARGS((int c, char_u *ptr, int col, int mincol));
  35. int makemap __ARGS((FILE *fd));
  36. int putescstr __ARGS((FILE *fd, char_u *str, int set));
  37. void check_map_keycodes __ARGS((void));