Rename expectation files to contain only one dot. This is needed for the Cython tests as of Cython 3. The following script was used in a clean repository to rename the files: ```sh ls | sed -E -n 's/(.*)\.(both|tag)?((\..*)?\.(c|cpp|pyx))/mv "\1.\2\3" "\1_\2\3"/p' | sh ```
47 lines
535 B
C
47 lines
535 B
C
#if 0
|
|
DEF FOO = 0
|
|
DEF BAR = 0
|
|
#endif
|
|
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#if defined(FOO)
|
|
#define FOO 1
|
|
#endif
|
|
|
|
#if defined(BAR)
|
|
#define BAR 2
|
|
#endif
|
|
|
|
#if defined(FOO)
|
|
typedef struct Foo {
|
|
|
|
} Foo;
|
|
#endif
|
|
|
|
#if defined(BAR)
|
|
typedef struct Bar {
|
|
|
|
} Bar;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
#if defined(FOO)
|
|
void foo(const struct Foo *foo);
|
|
#endif
|
|
|
|
#if defined(BAR)
|
|
void bar(const struct Bar *bar);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|