My slstatus configuration
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

util.h 333 B

12345678910111213
  1. /* See LICENSE file for copyright and license details. */
  2. extern char buf[1024];
  3. #define LEN(x) (sizeof (x) / sizeof *(x))
  4. extern char *argv0;
  5. void warn(const char *, ...);
  6. void die(const char *, ...);
  7. const char *bprintf(const char *fmt, ...);
  8. const char *fmt_scaled(size_t);
  9. int pscanf(const char *path, const char *fmt, ...);