shisa.h | shisa.h | |||
---|---|---|---|---|
/* shisa.h --- Header file for concurrent write-safe user information datab ase. | /* shisa.h --- Header file for concurrent write-safe user information datab ase. | |||
* Copyright (C) 2003, 2004, 2007, 2008 Simon Josefsson | * Copyright (C) 2003-2012 Simon Josefsson | |||
* | * | |||
* This file is part of Shishi. | * This file is part of Shishi. | |||
* | * | |||
* Shishi is free software; you can redistribute it and/or modify it | * Shishi is free software; you can redistribute it and/or modify it | |||
* under the terms of the GNU General Public License as published by | * under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 3 of the License, or | * the Free Software Foundation; either version 3 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* Shishi is distributed in the hope that it will be useful, but | * Shishi is distributed in the hope that it will be useful, but | |||
* WITHOUT ANY WARRANTY; without even the implied warranty of | * WITHOUT ANY WARRANTY; without even the implied warranty of | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
shishi.h | shishi.h | |||
---|---|---|---|---|
/* shishi.h --- Header file for Shishi library. -*- c -*- | /* shishi.h --- Header file for Shishi library. -*- c -*- | |||
* Copyright (C) 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010 Simon Jose fsson | * Copyright (C) 2002-2012 Simon Josefsson | |||
* | * | |||
* This file is part of Shishi. | * This file is part of Shishi. | |||
* | * | |||
* Shishi is free software; you can redistribute it and/or modify it | * Shishi is free software; you can redistribute it and/or modify it | |||
* under the terms of the GNU General Public License as published by | * under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 3 of the License, or | * the Free Software Foundation; either version 3 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* Shishi is distributed in the hope that it will be useful, but | * Shishi is distributed in the hope that it will be useful, but | |||
* WITHOUT ANY WARRANTY; without even the implied warranty of | * WITHOUT ANY WARRANTY; without even the implied warranty of | |||
skipping to change at line 32 | skipping to change at line 32 | |||
#ifndef SHISHI_H | #ifndef SHISHI_H | |||
#define SHISHI_H | #define SHISHI_H | |||
#include <stddef.h> /* size_t */ | #include <stddef.h> /* size_t */ | |||
#include <stdio.h> /* FILE */ | #include <stdio.h> /* FILE */ | |||
#include <stdarg.h> /* va_list */ | #include <stdarg.h> /* va_list */ | |||
#include <time.h> /* time_t */ | #include <time.h> /* time_t */ | |||
#include <shishi-int.h> /* uint32_t */ | #include <shishi-int.h> /* uint32_t */ | |||
#define SHISHI_VERSION "1.0.0" | #define SHISHI_VERSION "1.0.1" | |||
# ifdef __cplusplus | # ifdef __cplusplus | |||
extern "C" | extern "C" | |||
{ | { | |||
# endif | # endif | |||
#ifndef __attribute__ | #ifndef __attribute__ | |||
/* This feature is available in gcc versions 2.5 and later. */ | /* This feature is available in gcc versions 2.5 and later. */ | |||
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) | # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) | |||
# define __attribute__(Spec) /* empty */ | # define __attribute__(Spec) /* empty */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||