diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/skiboot/ccan/list/test/helper.h | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/skiboot/ccan/list/test/helper.h')
-rw-r--r-- | roms/skiboot/ccan/list/test/helper.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roms/skiboot/ccan/list/test/helper.h b/roms/skiboot/ccan/list/test/helper.h new file mode 100644 index 000000000..4b64a7d6a --- /dev/null +++ b/roms/skiboot/ccan/list/test/helper.h @@ -0,0 +1,9 @@ +/* These are in a separate C file so we can test undefined structures. */ +struct opaque; +typedef struct opaque opaque_t; + +opaque_t *create_opaque_blob(void); +bool if_blobs_know_the_secret(opaque_t *blob); +void destroy_opaque_blob(opaque_t *blob); + + |