micro-utils/config.h

26 lines
459 B
C
Raw Normal View History

2023-11-14 20:13:31 +00:00
#ifndef _CONFIG_H
#define _CONFIG_H
/* Depends: cat tee wc */
#define BUF_SIZE 4096
/* Random source for shred */
#define RAND_SOURCE "/dev/urandom"
2023-11-17 12:29:29 +00:00
/* format for printf (head) */
#define HEAD_FMT "==> %s <==\n"
2023-11-22 10:58:43 +00:00
/* du block size */
#define BLK_SIZE 512
2023-11-14 20:25:45 +00:00
/* Options: To disable, comment line */
2023-11-14 20:13:31 +00:00
/* Add escape-char support in echo */
#define ECHO_FANCY
2023-11-14 20:25:45 +00:00
/* getloadavg() unavailable in android os */
#ifndef __ANDROID__
#define UPTIME_LOADAVG
#endif
2023-11-14 20:13:31 +00:00
#endif