13be6ef06SEitan Adler /* 2b3c88c28SEitan Adler * $FreeBSD$ 3b3c88c28SEitan Adler * 43be6ef06SEitan Adler * Top users/processes display for Unix 53be6ef06SEitan Adler * 63be6ef06SEitan Adler * This program may be freely redistributed, 73be6ef06SEitan Adler * but this entire comment MUST remain intact. 83be6ef06SEitan Adler * 93be6ef06SEitan Adler * Copyright (c) 1984, 1989, William LeFebvre, Rice University 103be6ef06SEitan Adler * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University 113be6ef06SEitan Adler */ 123be6ef06SEitan Adler 13*66b3f031SEitan Adler int atoiwi(const char *); 1419789395SEitan Adler char *itoa(unsigned int); 1519789395SEitan Adler char *itoa7(unsigned int); 16b3c88c28SEitan Adler int digits(int); 17*66b3f031SEitan Adler char *strecpy(char *, const char *); 18b3c88c28SEitan Adler char **argparse(char *, int *); 19b3c88c28SEitan Adler long percentages(int, int *, long *, long *, long *); 20b3c88c28SEitan Adler char *format_time(long); 21b3c88c28SEitan Adler char *format_k(int); 223be6ef06SEitan Adler char *format_k2(unsigned long long); 23*66b3f031SEitan Adler int string_index(const char *string, char *array[]); 243be6ef06SEitan Adler 25