Sha256: e088675f17a952e6a118b85a0b4b834e5faf837e5ff91a8cf7739385ca69206e

Contents?: true

Size: 1.3 KB

Versions: 13

Compression:

Stored size: 1.3 KB

Contents

/* ==========================================
    CMock Project - Automatic Mock Generation for C
    Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
    [Released under MIT License. Please refer to license.txt for details]
========================================== */

typedef unsigned short U16;
typedef signed int int32_t;

typedef struct _POINT_T
{
  int x;
  int y;
} POINT_T;

// typedef edge case;
// not ANSI C but it has been done and will break cmock if not handled
typedef void VOID_TYPE_CRAZINESS;

/* fun parsing & mock generation cases */

void var_args1(int a, ...);
void var_args2(int a, int b, ...);

VOID_TYPE_CRAZINESS void_type_craziness1(int, float, double, char, short, long, long int, long long, void*);
int void_type_craziness2( VOID_TYPE_CRAZINESS );

   void  crazy_whitespace  (   int    lint, double shot  ,  short  stack )  ;

char
 crazy_multiline
(
  int a,
  unsigned int b);

U16  *ptr_return1(int a);
U16*  ptr_return2(int a);
U16 * ptr_return3(int a);

unsigned int** ptr_ptr_return1(unsigned int** a);
unsigned int* *ptr_ptr_return2(unsigned int* *a);
unsigned int **ptr_ptr_return3(unsigned int **a);
unsigned int ** ptr_ptr_return4(unsigned int ** a);

extern unsigned long int incredible_descriptors(register const unsigned short a);

int32_t example_c99_type(int32_t param1);

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ceedling-0.18.0 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.17.0 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.16.0 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.6 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.5 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.4 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.3 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.2 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.1 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.15.0 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.13.0 vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.0.2 new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h
ceedling-0.0.1 new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h