Added to library function to check endianess
[gapil.git] / sources / Gapil.h
index 0db517d6a712fc4fd1207c067bb5223a88fa016e..c6cbfea4d91b4294968e2f9a143cbc8caa816f05 100644 (file)
@@ -23,7 +23,7 @@
  *
  * Author: S. Piccardi
  *
- * $Id: Gapil.h,v 1.11 2003/05/06 11:29:16 piccardi Exp $
+ * $Id: Gapil.h,v 1.12 2003/08/16 18:30:21 piccardi Exp $
  *
  *****************************************************************************/
 #include <sys/sem.h>                           /* IPC semaphore declarations */
@@ -122,3 +122,7 @@ void * CreateShm(char * shm_name, off_t shm_size, int perm, int fill);
 void * FindShm(char * shm_name, off_t shm_size);
 /* Function RemoveShm: remove a POSIX shared memory */
 int RemoveShm(char * shm_name);
+/*
+ * General purpose functions. See corresponding .c
+ */
+int endian(void);