Subversion Repositories HelenOS

Rev

Rev 3285 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3265 post 1
#ifndef ERRSTR_H
2
#define ERRSTR_H
3
 
4
/* Simple array to translate error codes to meaningful strings */
5
 
6
static char *cl_errors[] = {
7
	"Success",
8
	"Failure",
9
	"Busy",
10
	"No Such Entry",
11
	"Not Enough Memory",
12
	"Permission Denied",
13
	"Method Not Supported",
14
	"Bad command or file name",
3285 post 15
	"Entry already exists",
3265 post 16
	NULL
17
};
18
 
19
#endif
20