version 1.6 | | version 1.7 |
---|
| | |
/* | | /* |
* static char *rcsid_style_c = | | * static char *rcsid_style_c = |
* "$Id: style.c,v 1.6 2000/06/21 05:03:47 cvs Exp $"; | | * "$Id: style.c,v 1.7 2000/11/17 05:07:49 cvs Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | | write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
Boston, MA 02111-1307, USA. */ | | Boston, MA 02111-1307, USA. */ |
| | |
int alphasort( struct dirent *a, struct dirent *b) | | int alphasort( struct dirent **a, struct dirent **b) |
{ | | { |
return strcmp (a->d_name, b->d_name); | | return strcmp ((*a)->d_name, (*b)->d_name); |
} | | } |
| | |
extern int errno; | | extern int errno; |