Subversion Repositories HelenOS

Rev

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

#ifndef ERRSTR_H
#define ERRSTR_H

/* Simple array to translate error codes to meaningful strings */

static char *cl_errors[] = {
    "Success",
    "Failure",
    "Busy",
    "No Such Entry",
    "Not Enough Memory",
    "Permission Denied",
    "Method Not Supported",
    "Bad command or file name",
    "Entry already exists",
    NULL
};

#endif