2005-09-20 13:26:39 +00:00
|
|
|
/** \file wutil.h
|
|
|
|
|
|
|
|
Prototypes for wide character equivalents of various standard unix
|
2006-02-28 13:17:16 +00:00
|
|
|
functions.
|
2005-09-20 13:26:39 +00:00
|
|
|
*/
|
2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_WUTIL_H
|
|
|
|
#define FISH_WUTIL_H
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-02-06 13:45:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2005-10-04 15:11:39 +00:00
|
|
|
#include <wchar.h>
|
2005-09-20 13:26:39 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <unistd.h>
|
2005-10-04 15:11:39 +00:00
|
|
|
#include <sys/stat.h>
|
2005-10-05 22:37:08 +00:00
|
|
|
#include <sys/types.h>
|
2006-01-26 09:57:06 +00:00
|
|
|
#include <stdarg.h>
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-02-08 14:58:47 +00:00
|
|
|
struct wdirent
|
|
|
|
{
|
|
|
|
wchar_t *d_name;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
|
2005-11-02 15:41:59 +00:00
|
|
|
/**
|
|
|
|
Call this function on startup to create internal wutil
|
|
|
|
resources. This function doesn't do anything.
|
|
|
|
*/
|
|
|
|
void wutil_init();
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
/**
|
|
|
|
Call this function on exit to free internal wutil resources
|
|
|
|
*/
|
|
|
|
void wutil_destroy();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of fopen().
|
|
|
|
*/
|
|
|
|
FILE *wfopen(const wchar_t *path, const char *mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of freopen().
|
|
|
|
*/
|
|
|
|
FILE *wfreopen(const wchar_t *path, const char *mode, FILE *stream);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of open().
|
|
|
|
*/
|
|
|
|
int wopen(const wchar_t *pathname, int flags, ...);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of creat().
|
|
|
|
*/
|
|
|
|
int wcreat(const wchar_t *pathname, mode_t mode);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of opendir().
|
|
|
|
*/
|
|
|
|
DIR *wopendir(const wchar_t *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of stat().
|
|
|
|
*/
|
|
|
|
int wstat(const wchar_t *file_name, struct stat *buf);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of lstat().
|
|
|
|
*/
|
|
|
|
int lwstat(const wchar_t *file_name, struct stat *buf);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of access().
|
|
|
|
*/
|
|
|
|
int waccess(const wchar_t *pathname, int mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of perror().
|
|
|
|
*/
|
|
|
|
void wperror(const wchar_t *s);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of getcwd().
|
|
|
|
*/
|
|
|
|
wchar_t *wgetcwd( wchar_t *buff, size_t sz );
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of chdir()
|
|
|
|
*/
|
|
|
|
int wchdir( const wchar_t * dir );
|
|
|
|
|
2006-02-02 15:23:56 +00:00
|
|
|
/**
|
2006-02-02 15:33:30 +00:00
|
|
|
Wide character version of realpath function. Just like the GNU
|
2006-02-02 15:23:56 +00:00
|
|
|
version of realpath, wrealpath will accept 0 as the value for the
|
|
|
|
second argument, in which case the result will be allocated using
|
|
|
|
malloc, and must be free'd by the user.
|
|
|
|
*/
|
|
|
|
wchar_t *wrealpath(const wchar_t *pathname, wchar_t *resolved_path);
|
|
|
|
|
2006-02-08 14:58:47 +00:00
|
|
|
struct wdirent *wreaddir(DIR *dir );
|
|
|
|
|
2006-06-14 13:22:40 +00:00
|
|
|
/**
|
|
|
|
Wide character version of dirname()
|
|
|
|
*/
|
|
|
|
wchar_t *wdirname( const wchar_t *path );
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wide character version of basename()
|
|
|
|
*/
|
|
|
|
wchar_t *wbasename( const wchar_t *path );
|
|
|
|
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
#endif
|