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

View File

@ -5,9 +5,9 @@
* Author: coissac * Author: coissac
*/ */
#include <littlebigman.h> #include "obilittlebigman.h"
bool islittlend() bool obi_is_little_end()
{ {
union { int entier; union { int entier;
char caractere[4] ; char caractere[4] ;

View File

@ -5,8 +5,8 @@
* Author: coissac * Author: coissac
*/ */
#ifndef LITTLEBIGMAN_H_ #ifndef OBILITTLEBIGMAN_H_
#define LITTLEBIGMAN_H_ #define OBILITTLEBIGMAN_H_
#include <stdbool.h> #include <stdbool.h>
@ -45,10 +45,11 @@
* - `true` if the architecture is little endian * - `true` if the architecture is little endian
* - `false` if the architecture is big endian * - `false` if the architecture is big endian
* *
* @author Eric Coissac (coissac) * @date 23/05/2015
* @created on 23/05/2015 * @author Eric Coissac (coissac)
* First implementation
*/ */
bool islittlend(); bool obi_is_little_end();
#endif /* LITTLEBIGMAN_H_ */ #endif /* OBILITTLEBIGMAN_H_ */