osdep:/glob-win.c: reformat

Use uncrustify on glob-win.c to fix the indentation mess in it.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34239 b3059339-0415-0410-9bf9-f77b7e298cf2
Author: reimar
This commit is contained in:
mplayer-svn 2011-10-23 11:51:44 +00:00 committed by wm4
parent 2934b22c80
commit 1764bfacca
1 changed files with 47 additions and 55 deletions

View File

@ -27,54 +27,45 @@
#include "glob.h" #include "glob.h"
int glob(const char *pattern, int flags, int glob(const char *pattern, int flags,
int (*errfunc)(const char *epath, int eerrno), glob_t *pglob) int (*errfunc)(const char *epath, int eerrno), glob_t *pglob)
{ {
HANDLE searchhndl; HANDLE searchhndl;
WIN32_FIND_DATA found_file; WIN32_FIND_DATA found_file;
if(errfunc)printf("glob():ERROR:Sorry errfunc not supported by this implementation\n"); if (errfunc)
if(flags)printf("glob():ERROR:Sorry no flags supported by this globimplementation\n"); printf("glob():ERROR:Sorry errfunc not supported by this implementation\n");
//printf("PATTERN \"%s\"\n",pattern); if (flags)
pglob->gl_pathc = 0; printf("glob():ERROR:Sorry no flags supported by this globimplementation\n");
searchhndl = FindFirstFile( pattern,&found_file); //printf("PATTERN \"%s\"\n",pattern);
if(searchhndl == INVALID_HANDLE_VALUE) pglob->gl_pathc = 0;
{ searchhndl = FindFirstFile(pattern, &found_file);
if(GetLastError() == ERROR_FILE_NOT_FOUND) if (searchhndl == INVALID_HANDLE_VALUE) {
{ if (GetLastError() == ERROR_FILE_NOT_FOUND) {
pglob->gl_pathc = 0; pglob->gl_pathc = 0;
//printf("could not find a file matching your search criteria\n"); //printf("could not find a file matching your search criteria\n");
return 1; return 1;
} } else {
else //printf("glob():ERROR:FindFirstFile: %i\n",GetLastError());
{ return 1;
//printf("glob():ERROR:FindFirstFile: %i\n",GetLastError()); }
return 1; }
} pglob->gl_pathv = malloc(sizeof(char *));
}
pglob->gl_pathv = malloc(sizeof(char*));
pglob->gl_pathv[0] = strdup(found_file.cFileName); pglob->gl_pathv[0] = strdup(found_file.cFileName);
pglob->gl_pathc++; pglob->gl_pathc++;
while(1) while (1) {
{ if (!FindNextFile(searchhndl, &found_file)) {
if(!FindNextFile(searchhndl,&found_file)) if (GetLastError() == ERROR_NO_MORE_FILES) {
{ //printf("glob(): no more files found\n");
if(GetLastError()==ERROR_NO_MORE_FILES)
{
//printf("glob(): no more files found\n");
break; break;
} } else {
else //printf("glob():ERROR:FindNextFile:%i\n",GetLastError());
{ return 1;
//printf("glob():ERROR:FindNextFile:%i\n",GetLastError()); }
return 1; } else {
}
}
else
{
//printf("glob: found file %s\n",found_file.cFileName); //printf("glob: found file %s\n",found_file.cFileName);
pglob->gl_pathc++; pglob->gl_pathc++;
pglob->gl_pathv = realloc(pglob->gl_pathv,pglob->gl_pathc * sizeof(char*)); pglob->gl_pathv = realloc(pglob->gl_pathv, pglob->gl_pathc * sizeof(char *));
pglob->gl_pathv[pglob->gl_pathc-1] = strdup(found_file.cFileName); pglob->gl_pathv[pglob->gl_pathc - 1] = strdup(found_file.cFileName);
} }
} }
FindClose(searchhndl); FindClose(searchhndl);
return 0; return 0;
@ -82,25 +73,26 @@ int glob(const char *pattern, int flags,
void globfree(glob_t *pglob) void globfree(glob_t *pglob)
{ {
int i; int i;
for(i=0; i <pglob->gl_pathc ;i++) for (i = 0; i < pglob->gl_pathc; i++)
{ free(pglob->gl_pathv[i]);
free(pglob->gl_pathv[i]); free(pglob->gl_pathv);
}
free(pglob->gl_pathv);
} }
#if 0 #if 0
int main(void){ int main(void)
glob_t gg; {
printf("globtest\n"); glob_t gg;
glob( "*.jpeg",0,NULL,&gg ); printf("globtest\n");
{ glob("*.jpeg", 0, NULL, &gg);
{
int i; int i;
for(i=0;i<gg.gl_pathc;i++)printf("GLOBED:%i %s\n",i,gg.gl_pathv[i]); for (i = 0; i < gg.gl_pathc; i++)
printf("GLOBED:%i %s\n", i, gg.gl_pathv[i]);
} }
globfree(&gg); globfree(&gg);
return 0; return 0;
} }
#endif #endif