qse/ase/lsp/err.c

47 lines
883 B
C
Raw Normal View History

2006-10-23 10:57:59 +00:00
/*
2007-02-03 10:52:36 +00:00
* $Id: err.c,v 1.9 2007-02-03 10:51:52 bacon Exp $
*
* {License}
2006-10-23 10:57:59 +00:00
*/
2006-10-25 13:42:31 +00:00
#include <ase/lsp/lsp_i.h>
2006-10-23 10:57:59 +00:00
2006-10-24 04:22:40 +00:00
int ase_lsp_geterrnum (ase_lsp_t* lsp)
2006-10-23 10:57:59 +00:00
{
return lsp->errnum;
}
2006-10-24 04:22:40 +00:00
const ase_char_t* ase_lsp_geterrstr (int errnum)
2006-10-23 10:57:59 +00:00
{
2006-10-29 13:00:39 +00:00
static const ase_char_t* __errstr[] =
{
ASE_T("no error"),
ASE_T("out of memory"),
2006-10-29 13:40:33 +00:00
ASE_T("exit"),
2006-10-29 13:00:39 +00:00
ASE_T("end"),
ASE_T("input not attached"),
ASE_T("input"),
ASE_T("output not attached"),
ASE_T("output"),
ASE_T("syntax"),
ASE_T("bad arguments"),
ASE_T("too few arguments"),
ASE_T("too many arguments"),
ASE_T("undefined function"),
ASE_T("bad function"),
ASE_T("duplicate formal"),
ASE_T("bad symbol"),
ASE_T("undefined symbol"),
ASE_T("empty body"),
ASE_T("bad value"),
ASE_T("divide by zero")
};
2006-11-29 02:54:17 +00:00
if (errnum >= 0 && errnum < ASE_COUNTOF(__errstr))
2006-10-23 10:57:59 +00:00
{
return __errstr[errnum];
}
2006-10-24 04:22:40 +00:00
return ASE_T("unknown error");
2006-10-23 10:57:59 +00:00
}