mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
We want to make it easier to test a bunch of different functions that might be invoked in constructors of other libraries. It seems conceivable that with these snippets, we could design other tests that also work across a wide range of intercepted functions.
8 lines
169 B
C
8 lines
169 B
C
#include "snippets/include_headers.h"
|
|
extern void FUNC_NAME_as_needed();
|
|
#define where "program"
|
|
int main() {
|
|
FUNC_NAME_as_needed();
|
|
#include "snippets/FUNC_NAME.c"
|
|
}
|