Skip to content
Permalink
a9f30669d6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (19 sloc) 334 Bytes
#pragma once
#ifndef DATA_TYPES
#define DATA_TYPES
#include <stdio.h>
#include <stdint.h>
#define FIXED_INT_TYPE
typedef struct FIXED_INT_TYPE
{
uint16_t A;
uint32_t B;
uint64_t C;
int16_t D;
int32_t E;
int64_t F;
};
#define VARIABLE_A 16
#define VARIABLE_B "Hi"
#define VARIABLE_C 3.14
#endif