stty: code shrink
[platform/upstream/busybox.git] / coreutils / head_tail.c
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 };