Project Euler Solutions
Enumerations | Functions | Variables
test_bcd_int.c File Reference
#include <stdio.h>
#include <time.h>
#include "./test_utils.h"
#include "../include/bcd.h"
Include dependency graph for test_bcd_int.c:

Enumerations

enum  Operation {
  ADD, SUB, MUL, DIV,
  MOD, POW, LSHIFT, RSHIFT,
  FACT, END
}
 

Functions

int main (int argc, char const *argv[])
 

Variables

const char op_symbols [END][6] = {"+", "-", "*", "//", "%", "**", "*10**"}
 
const unsigned char counts [6] = {1, 2, 3, 4, 5, 6}
 

Enumeration Type Documentation

enum Operation
Enumerator
ADD 
SUB 
MUL 
DIV 
MOD 
POW 
LSHIFT 
RSHIFT 
FACT 
END 

Function Documentation

int main ( int  argc,
char const *  argv[] 
)

Here is the call graph for this function:

Variable Documentation

const unsigned char counts[6] = {1, 2, 3, 4, 5, 6}
const char op_symbols[END][6] = {"+", "-", "*", "//", "%", "**", "*10**"}