00001 /**************************************************************** 00002 * Fulguro 00003 * Copyright (C) 2004 Christophe Clienti 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the 00017 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00018 * Boston, MA 02111-1307, USA. 00019 ***************************************************************/ 00020 00021 #include <stdio.h> 00022 #include <stdlib.h> 00023 #include <string.h> 00024 #include <flgrCoreErrors.h> 00025 #include "flgrCoreDispatch.h" 00026 #include "flgrCoreSystem.h" 00027 #include <flgrVersion.h> 00028 00029 00030 int flgr_system_is_little_endian(void) { 00031 unsigned int x = 0x11223344; 00032 unsigned char *px = (unsigned char *) &x; 00033 int test = (px[0] == 0x44); 00034 00035 00036 00037 return test; 00038 } 00039 00040 char *flgr_get_version(void) { 00041 return FLGR_VERSION(FLGR_VERSION_MAJOR,FLGR_VERSION_MINOR); 00042 } 00043 00044 00045 int flgr_get_processor_numbers(void) { 00046 return FLGR_PROC_NUMBER; 00047 }