Home | History | Annotate | Download | only in data-formatter-cpp

Lines Matching refs:i_am_cool

42 struct i_am_cool
47 i_am_cool(int I, ShowMyGuts F, char C) :
49 i_am_cool() : integer(1), floating(2), character('3') {}
55 i_am_cool first_cool;
56 i_am_cool second_cool;
99 i_am_cool *cool_pointer = (i_am_cool*)malloc(sizeof(i_am_cool)*3);
100 cool_pointer[0] = i_am_cool(3,-3.141592,'E');
101 cool_pointer[1] = i_am_cool(0,-3.141592,'E');
102 cool_pointer[2] = i_am_cool(0,-3.141592,'E');
104 i_am_cool cool_array[5];