2 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
6 #pragma ident "%Z%%M% %I% %E% SMI"
9 * This program is copyright Alec Muffett 1993. The author disclaims all
10 * responsibility or liability with respect to it's usage or its effect
11 * upon hardware or computer systems, and maintains copyright as set out
12 * in the "LICENCE" document which accompanies distributions of Crack v4.0
20 Chop(register char *string
)
27 for (ptr
= string
; *ptr
; ptr
++);
36 Chomp(register char *string
)
43 for (ptr
= string
; *ptr
; ptr
++)
45 if (ptr
!= string
&& isspace(*(--ptr
))) {
54 Trim(register char *string
)
58 for (ptr
= string
; *ptr
; ptr
++);
60 while ((--ptr
>= string
) && isspace(*ptr
));