Rename the two files to follow file naming conventions

This commit is contained in:
2015-05-23 13:18:28 +03:00
parent d5fcd52188
commit 3636672b2e
2 changed files with 9 additions and 8 deletions

20
src/obilittlebigman.c Normal file
View File

@@ -0,0 +1,20 @@
/*
* littlebigman.c
*
* Created on: 23 mai 2015
* Author: coissac
*/
#include "obilittlebigman.h"
bool obi_is_little_end()
{
union { int entier;
char caractere[4] ;
} test;
test.entier=0x01020304;
return (test.caractere[3] == 1);
}