diff options
Diffstat (limited to 'coreutils/head_tail.c')
-rw-r--r-- | coreutils/head_tail.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/coreutils/head_tail.c b/coreutils/head_tail.c new file mode 100644 index 000000000..1658c0d1b --- /dev/null +++ b/coreutils/head_tail.c | |||
@@ -0,0 +1,14 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2013 Denys Vlasenko | ||
3 | * | ||
4 | * Licensed under GPLv2, see file LICENSE in this source tree. | ||
5 | */ | ||
6 | #include "libbb.h" | ||
7 | #include "head_tail.h" | ||
8 | |||
9 | const struct suffix_mult head_tail_suffixes[] = { | ||
10 | { "b", 512 }, | ||
11 | { "k", 1024 }, | ||
12 | { "m", 1024*1024 }, | ||
13 | { "", 0 } | ||
14 | }; | ||