From 539259302839ace39f1bbd8a12c61b99f83ddb8b Mon Sep 17 00:00:00 2001 From: roland Date: Thu, 14 May 1992 06:26:14 +0000 Subject: [PATCH] Initial revision --- dirent/alphasort.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 dirent/alphasort.c diff --git a/dirent/alphasort.c b/dirent/alphasort.c new file mode 100644 index 0000000000..fd4a82df0b --- /dev/null +++ b/dirent/alphasort.c @@ -0,0 +1,29 @@ +/* Copyright (C) 1992 Free Software Foundation, Inc. +This file is part of the GNU C Library. + +The GNU C Library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public License as +published by the Free Software Foundation; either version 2 of the +License, or (at your option) any later version. + +The GNU C Library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with the GNU C Library; see the file COPYING.LIB. If +not, write to the Free Software Foundation, Inc., 675 Mass Ave, +Cambridge, MA 02139, USA. */ + +#include +#include +#include + +int +DEFUN(alphasort, (a, b), + CONST PTR a AND CONST PTR b) +{ + return strcmp (((struct dirent *) a)->d_name, + ((struct dirent *) b)->d_name); +} -- 2.11.0