/usr/include/libinstpatch-1.0/libinstpatch/misc.h is in libinstpatch-dev 1.0.0-2.
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 | /*
* libInstPatch
* Copyright (C) 1999-2010 Joshua "Element" Green <jgreen@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1
* of the License only.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA or on the web at http://www.gnu.org.
*/
/**
* SECTION: misc
* @short_description: Miscellaneous stuff
* @see_also:
* @stability: Stable
*/
#ifndef __MISC_H__
#define __MISC_H__
#include <stdio.h>
#include <glib.h>
#include <glib-object.h>
/* libInstPatch domain for g_set_error */
#define IPATCH_ERROR ipatch_error_quark()
typedef enum
{
IPATCH_ERROR_FAIL, /* a general failure */
IPATCH_ERROR_IO, /* I/O error (file operations, etc) */
IPATCH_ERROR_PROGRAM, /* a programming error */
IPATCH_ERROR_INVALID, /* invalid parameter or data */
IPATCH_ERROR_CORRUPT, /* corrupted data */
IPATCH_ERROR_NOMEM, /* out of memory error */
IPATCH_ERROR_UNSUPPORTED, /* unsupported feature */
IPATCH_ERROR_UNEXPECTED_EOF, /* unexpected end of file */
IPATCH_ERROR_UNHANDLED_CONVERSION /* unhandled object conversion */
} IpatchError;
#ifdef G_HAVE_ISO_VARARGS
#define ipatch_code_error(...) \
_ipatch_code_error (__FILE__, __LINE__, G_GNUC_PRETTY_FUNCTION, __VA_ARGS__)
#elif defined(G_HAVE_GNUC_VARARGS)
#define ipatch_code_error(err, format...) \
_ipatch_code_error (__FILE__, __LINE__, G_GNUC_PRETTY_FUNCTION, err, format)
#else /* no varargs macros */
static void
ipatch_code_error (GError **err, const char *format, ...)
{
va_list args;
va_start (args, format);
_ipatch_code_errorv (NULL, -1, NULL, err, format, args);
va_end (args);
}
#endif
extern char *ipatch_application_name;
void ipatch_init (void);
void ipatch_set_application_name (const char *name);
GQuark ipatch_error_quark (void);
G_CONST_RETURN char *ipatch_gerror_message (GError *err);
void _ipatch_code_error (const char *file, guint line, const char *func,
GError **err, const char *format, ...);
void _ipatch_code_errorv (const char *file, guint line, const char *func,
GError **err, const char *format, va_list args);
void ipatch_strconcat_num (const char *src, int num, char *dest, int size);
void ipatch_dump_object (GObject *object, gboolean recursive, FILE *file);
#endif
|