~ubuntu-branches/debian/squeeze/alpine/squeeze

« back to all changes in this revision

Viewing changes to pico/osdep/filesys.h

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: filesys.h 380 2007-01-23 00:09:18Z hubert@u.washington.edu $
 
3
 *
 
4
 * ========================================================================
 
5
 * Copyright 2006-2007 University of Washington
 
6
 *
 
7
 * Licensed under the Apache License, Version 2.0 (the "License");
 
8
 * you may not use this file except in compliance with the License.
 
9
 * You may obtain a copy of the License at
 
10
 *
 
11
 *     http://www.apache.org/licenses/LICENSE-2.0
 
12
 *
 
13
 * ========================================================================
 
14
 */
 
15
 
 
16
 
 
17
#ifndef PICO_OSDEP_FILESYS_INCLUDED
 
18
#define PICO_OSDEP_FILESYS_INCLUDED
 
19
 
 
20
 
 
21
#include "../../pith/osdep/canaccess.h" /* for *_ACCESS */
 
22
 
 
23
 
 
24
/* exported prototypes */
 
25
int      fexist(char *, char *, off_t *);
 
26
int      isdir(char *, long *, time_t *);
 
27
char    *gethomedir(int *);
 
28
int      homeless(char *);
 
29
char    *getfnames(char *, char *, int *, char *, size_t);
 
30
void     fioperr(int, char *);
 
31
char    *pfnexpand(char *, size_t);
 
32
void     fixpath(char *, size_t);
 
33
int      compresspath(char *, char *, size_t);
 
34
void     tmpname(char *, char *);
 
35
void     makename(char *, char *);
 
36
int      copy(char *, char *);
 
37
int      ffwopen(char *, int);
 
38
int      ffclose(void);
 
39
int      ffelbowroom(void);
 
40
 
 
41
 
 
42
#endif /* PICO_OSDEP_FILESYS_INCLUDED */