scanner.h

Sun, 06 Nov 2011 20:12:55 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 06 Nov 2011 20:12:55 +0100
changeset 24
3963e8800a12
parent 23
778388400f7b
permissions
-rw-r--r--

replaced stricmp with strcasecmp to stay standard compliant

/*
 * scanner.h
 *
 *  Created on: 23.05.2011
 *      Author: Mike
 */

#ifndef SCANNER_H_
#define SCANNER_H_

#include "stdinc.h"
#include "settings.h"

typedef struct {
  char *dir;
  int spaces;
} scanner_t;

#ifdef _cplusplus
extern "C" {
#endif

int scanDirectory(scanner_t scanner, settings_t* settings);

#ifdef _cplusplus
}
#endif 
                  
#endif /* SCANNER_H_ */

mercurial