This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <malloc.h> | |
#define uint8_t (unsigned char) | |
int main (int argc, char const* argv[]) | |
{ | |
typedef struct _cross_setting { | |
unsigned char IN0:2; | |
unsigned char IN1:2; | |
unsigned char IN2:2; |
NewerOlder