My dwm build
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

9 行
305 B

  1. /* See LICENSE file for copyright and license details. */
  2. #define MAX(A, B) ((A) > (B) ? (A) : (B))
  3. #define MIN(A, B) ((A) < (B) ? (A) : (B))
  4. #define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
  5. void die(const char *fmt, ...);
  6. void *ecalloc(size_t nmemb, size_t size);