/usr/include/taningia/error.h is in libtaningia-dev 0.2.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | /*
* Copyright (C) 2009 Lincoln de Sousa <lincoln@minaslivre.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef _TANINGIA_ERROR_H_
#define _TANINGIA_ERROR_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
char *name;
char *message;
int code;
} ta_error_t;
/**
* @name: ta_error::new
* @type: constructor
*/
ta_error_t *ta_error_new (void);
/**
* @name: ta_error::init
* @type: initializer
*/
void ta_error_init (ta_error_t *error);
/**
* @name: ta_error::get_code
* @type: getter
*/
int ta_error_get_code (ta_error_t *error);
/**
* @name: ta_error::set_code
* @type: setter
*/
void ta_error_set_code (ta_error_t *error, int code);
/**
* @name: ta_error::get_name
* @type: getter
*/
const char *ta_error_get_name (ta_error_t *error);
/**
* @name: ta_error::set_name
* @type: setter
*/
void ta_error_set_name (ta_error_t *error, const char *name);
/**
* @name: ta_error::get_message
* @type: getter
*/
const char *ta_error_get_message (ta_error_t *error);
/**
* @name: ta_error::set_message
* @type: setter
*/
void ta_error_set_message (ta_error_t *error, const char *message, ...);
/**
* @name: ta_error::set_full
* @type: method
*
* A shortcut to set all error attributes at once.
*/
void ta_error_set_full (ta_error_t *error, int code, const char *name,
const char *message, ...);
#ifdef __cplusplus
}
#endif
#endif /* _TANINGIA_ERROR_H_ */
|