~ubuntu-branches/ubuntu/natty/9base/natty

« back to all changes in this revision

Viewing changes to rc/fns.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-08-20 17:34:06 UTC
  • mfrom: (6.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090820173406-xpwqa9ruyevvc0ut
Tags: 1:3-3
* Updating maintainer field.
* Updating vcs fields.
* Updating package to standards version 3.8.3.
* Updatin variables writing in rules to consistent style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
int     Executable(char*);
8
8
void    Execute(word*,  word*);
9
9
void    Exit(char*);
 
10
int     ForkExecute(char*, char**, int, int, int);
10
11
int     Globsize(char*);
11
12
int     Isatty(int);
12
13
void    Memcpy(char*, char*, long);
13
14
void    Noerror(void);
14
15
int     Opendir(char*);
15
16
long    Read(int, char*, long);
16
 
int     Readdir(int, char*);
 
17
int     Readdir(int, char*, int);
17
18
long    Seek(int, long, long);
18
19
void    Trapinit(void);
19
20
void    Unlink(char*);
21
22
void    Vinit(void);
22
23
int     Waitfor(int, int);
23
24
long    Write(int, char*, long);
 
25
void    addwaitpid(int);
24
26
int     advance(void);
25
27
int     back(int);
26
28
void    cleanhere(char*);
27
29
void    codefree(code*);
28
30
int     compile(tree*);
29
31
char *  list2str(word*);
30
 
char *  _list2str(word*, int);
31
32
int     count(word*);
32
33
void    deglob(char*);
 
34
void    delwaitpid(int);
33
35
void    dotrap(void);
34
36
void    freenodes(void);
35
37
void    freewords(word*);
36
38
void    globlist(void);
 
39
int     havewaitpid(int);
37
40
int     idchr(int);
38
 
void    itoa(char*, long);
 
41
void    inttoascii(char*, long);
39
42
void    kinit(void);
 
43
int     mapfd(int);
40
44
int     match(char*, char*, int);
41
45
int     matchfn(char*, char*);
 
46
char**  mkargv(word*);
 
47
void    clearwaitpids(void);
42
48
void    panic(char*, int);
43
49
void    pathinit(void);
44
50
void    poplist(void);
48
54
void    pushredir(int, int, int);
49
55
void    pushword(char*);
50
56
void    readhere(void);
 
57
word*   searchpath(char*);
51
58
void    setstatus(char*);
52
59
void    setvar(char*, word*);
53
 
void    _setvar(char*, word*, int);
54
60
void    skipnl(void);
55
61
void    start(code*, int, var*);
56
62
int     truestatus(void);