/usr/include/I2util/errlogimmediate.h is in libi2util-dev 1.2-1.
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 | /*
* $Id: errlogimmediate.h 212 2012-07-12 11:47:49Z aaron $
*/
/************************************************************************
* *
* Copyright (C) 2002 *
* Internet2 *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: errlogimmediate.h
*
* Author: Jeff Boote
* Internet2
*
* Date: Tue Apr 23 14:44:22 2002
*
* Description: This file defines an "immediate-mode" logging
* function to be used as the `log_func' argument
* to the I2OpenErr() function.
*
* Modified from code writen by John Clyne at UCAR...
*
*
* Based on code from UCAR DCS tools. Copyright information
* from UCAR follows:
*
* Copyright 2012, University Corporation for Atmospheric Research.
*
* This software may be used, subject to the terms of OSI's BSD-2 Clause
* License located at http://www.opensource.org/licenses/bsd-license.php/
*
*/
#ifndef _i2_errlogimmediate_h_
#define _i2_errlogimmediate_h_
#include <stdio.h>
BEGIN_C_DECLS
typedef struct I2LogImmediateAttr_ {
FILE *fp;
unsigned long line_info;
const char *tformat;
} I2LogImmediateAttr;
extern void I2ErrLogImmediate(
struct I2ErrLogEvent *ev,
void *arg,
void **data /* not used */
);
END_C_DECLS
#endif /* _i2_errlogimmediate_h_ */
|