micro-utils/config.h
2023-11-17 15:29:29 +03:00

23 lines
417 B
C

#ifndef _CONFIG_H
#define _CONFIG_H
/* Depends: cat tee wc */
#define BUF_SIZE 4096
/* Random source for shred */
#define RAND_SOURCE "/dev/urandom"
/* format for printf (head) */
#define HEAD_FMT "==> %s <==\n"
/* Options: To disable, comment line */
/* Add escape-char support in echo */
#define ECHO_FANCY
/* getloadavg() unavailable in android os */
#ifndef __ANDROID__
#define UPTIME_LOADAVG
#endif
#endif