mirror of
https://github.com/wassname/ray.git
synced 2026-06-30 07:53:50 +08:00
7d629d4e48
* code for maintaining the object table * Makefile fix * Clone git submodules. * directory -> object_table * Fix Makefile and remove unnecessary files. * Fix formatting. * make code more generic
30 lines
876 B
C
30 lines
876 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef NDEBUG
|
|
#define LOG_DEBUG(M, ...)
|
|
#else
|
|
#define LOG_DEBUG(M, ...) \
|
|
fprintf(stderr, "[DEBUG] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__)
|
|
#endif
|
|
|
|
#define LOG_ERR(M, ...) \
|
|
fprintf(stderr, "[ERROR] (%s:%d: errno: %s) " M "\n", __FILE__, __LINE__, \
|
|
errno == 0 ? "None" : strerror(errno), ##__VA_ARGS__)
|
|
|
|
#define LOG_INFO(M, ...) \
|
|
fprintf(stderr, "[INFO] (%s:%d) " M "\n", __FILE__, __LINE__, ##__VA_ARGS__)
|
|
|
|
#define UNIQUE_ID_SIZE 20
|
|
|
|
typedef struct { unsigned char id[UNIQUE_ID_SIZE]; } unique_id;
|
|
|
|
/* Convert a 20 byte sha1 hash to a hexdecimal string. This function assumes
|
|
* that buffer points to an already allocated char array of size 2 *
|
|
* UNIQUE_ID_SIZE + 1 */
|
|
char *sha1_to_hex(const unsigned char *sha1, char *buffer);
|
|
|
|
#endif
|