My build of suckless st terminal
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.

24 lines
548 B

  1. /* See LICENSE for license details. */
  2. /* X modifiers */
  3. #define XK_ANY_MOD UINT_MAX
  4. #define XK_NO_MOD 0
  5. #define XK_SWITCH_MOD (1<<13)
  6. void draw(void);
  7. void drawregion(int, int, int, int);
  8. void xbell(void);
  9. void xclipcopy(void);
  10. void xclippaste(void);
  11. void xhints(void);
  12. void xloadcols(void);
  13. int xsetcolorname(int, const char *);
  14. void xsettitle(char *);
  15. void xsetpointermotion(int);
  16. void xresize(int, int);
  17. void xselpaste(void);
  18. void xsetsel(char *, Time);
  19. void zoom(const Arg *);
  20. void zoomabs(const Arg *);
  21. void zoomreset(const Arg *);