blob: 1658c0d1bfbab97b5cbd73ae9fc571ad01c07f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (C) 2013 Denys Vlasenko
*
* Licensed under GPLv2, see file LICENSE in this source tree.
*/
#include "libbb.h"
#include "head_tail.h"
const struct suffix_mult head_tail_suffixes[] = {
{ "b", 512 },
{ "k", 1024 },
{ "m", 1024*1024 },
{ "", 0 }
};
|