47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/*
|
|
$Id: utils.h,v 1.6 2005/01/23 00:20:43 rocky Exp $
|
|
|
|
Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
|
Copyright (C) 1998 Monty xiphmont@mit.edu
|
|
|
|
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
|
|
*/
|
|
|
|
#include <cdio/bytesex.h>
|
|
#include <stdio.h>
|
|
|
|
/* I wonder how many alignment issues this is gonna trip in the
|
|
future... it shouldn't trip any... I guess we'll find out :) */
|
|
|
|
static inline int
|
|
bigendianp(void)
|
|
{
|
|
int test=1;
|
|
char *hack=(char *)(&test);
|
|
if(hack[0])return(0);
|
|
return(1);
|
|
}
|
|
|
|
extern char *catstring(char *buff, const char *s);
|
|
|
|
void cderror(cdrom_drive_t *d, const char *s);
|
|
|
|
void cdmessage(cdrom_drive_t *d,const char *s);
|
|
|
|
void idperror(int messagedest, char **messages, const char *f, const char *s);
|
|
|
|
void idmessage(int messagedest, char **messages, const char *f, const char *s);
|
|
|