view netinstall/find.h @ 4413:dc84ec90b463

Fix build problems on Windows. Also: regenerate dependencies, update ignored files 2008-01-24 Mike Sperber <mike@xemacs.org> * config.inc.samp: Fix URL for optional libraries. * xemacs.mak (PATH_PREFIX): Set PATH_PREFIX to the value of INSTALL_DIR. * xemacs.mak (PATH_DEFINES): Fix setting of PATH_DEFINES. * xemacs.mak (DEBUG_FLAG_COMPILE_DEBUG): Comment out -RTC1: it even crashes with VC 8. * xemacs.mak: Comment out echo line that leads to command-line-too-long error on some Windowses. 2008-01-24 Mike Sperber <mike@xemacs.org> * make-src-depend (PrintDeps): Fix Perl code that no longer works with Perl 5.10.
author Mike Sperber <sperber@deinprogramm.de>
date Mon, 28 Jan 2008 08:13:37 +0100
parents 3078fd1074e8
children
line wrap: on
line source

/*
 * Copyright (c) 2000, Red Hat, Inc.
 *
 *     This program is free software; you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation; either version 2 of the License, or
 *     (at your option) any later version.
 *
 *     A copy of the GNU General Public License can be found at
 *     http://www.gnu.org/
 *
 * Written by DJ Delorie <dj@cygnus.com>
 *
 */

/* The for_each function is called once for each file found in the
   starting_dir or any subdir (recursively), passing the relative path
   (i.e. it doesn't include "starting_dir") and the size of the file
   (bytes).  find() returns the number of files found.  Directories
   are scanned but not included in the "found" files. */

extern int find (char *starting_dir, void (*for_each)(char *, unsigned int));