dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

block.h (286B)


      1 typedef struct {
      2         size_t (*const funcu)(char *str, int sigval);
      3         void (*const funcc)(int button);
      4         const int interval;
      5         const int signal;
      6         char curtext[BLOCKLENGTH + DELIMITERLENGTH];
      7         char prvtext[BLOCKLENGTH];
      8         size_t length;
      9 } Block;