YREA-SLS/SLS_C/include/sls/sls_errors.h

20 lines
260 B
C

// Kyler Olsen
// YREA SLS
// SLS Error Header
// October 2025
#ifndef SLS_ERROR_H
#define SLS_ERROR_H
typedef struct {
const char *message;
int code;
} SlsError;
typedef enum {
SLS_ERROR,
SLS_RESULT,
} SlsResultType;
#endif // SLS_ERROR_H