124139Sjoerg/*
224139Sjoerg *  Top users/processes display for Unix
324139Sjoerg *  Version 3
424139Sjoerg *
524139Sjoerg *  This program may be freely redistributed,
624139Sjoerg *  but this entire comment MUST remain intact.
724139Sjoerg *
824139Sjoerg *  Copyright (c) 1984, 1989, William LeFebvre, Rice University
924139Sjoerg *  Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
1024139Sjoerg */
1124139Sjoerg
1224139Sjoerg/* prototypes for functions found in utils.c */
1324139Sjoerg
1424139Sjoergint atoiwi();
1524139Sjoergchar *itoa();
1624139Sjoergchar *itoa7();
1724139Sjoergint digits();
1824139Sjoergchar *strecpy();
1924139Sjoergchar **argparse();
2024139Sjoerglong percentages();
2124139Sjoergchar *errmsg();
2224139Sjoergchar *format_time();
2324139Sjoergchar *format_k();
24206056Sbrucecchar *format_k2(unsigned long long);
25300395Sngieint string_index(char *string, char **array);
26300395Sngie
27