mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
I thought these were all execution time crashers, but I was incorrect. Some are just execution tests that take a little bit to run.
12 lines
179 B
C
12 lines
179 B
C
|
|
#ifndef DEMOHEADER_H
|
|
#define DEMOHEADER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef bool (^fake_apply_t)(const char *key, id value);
|
|
|
|
bool fake_apply(id obj, fake_apply_t applier);
|
|
|
|
#endif
|