/usr/include/SDL/sge_misc.h is in libsdl-sge-dev 030809dfsg-6.
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 | /*
* SDL Graphics Extension
* Misc functions (header)
*
* Started 990819
*
* License: LGPL v2+ (see the file LICENSE)
* (c)1999-2003 Anders Lindström
*/
/*********************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
*********************************************************************/
#ifndef sge_misc_H
#define sge_misc_H
#include "SDL.h"
#include "sge_internal.h"
#ifdef _SGE_C
extern "C" {
#endif
DECLSPEC int sge_Random(int min, int max);
DECLSPEC void sge_Randomize(void);
DECLSPEC Uint32 sge_CalibrateDelay(void);
DECLSPEC Uint32 sge_DelayRes(void);
DECLSPEC Uint32 sge_Delay(Uint32 ticks);
#ifdef _SGE_C
}
#endif
#endif /* sge_misc_H */
|