cmvr_head/packages/erpc-1.14.0/erpcgen/test/test_extern_c.yml

31 lines
486 B
YAML
Raw Normal View History

2025-12-30 15:44:41 +08:00
---
name: extern c empty
desc: do the extern "C" blocks get produced for empty input
idl: ""
test_common.h:
- |
#if defined(__cplusplus)
extern "C" {
#endif
- |
#if defined(__cplusplus)
}
#endif
---
name: extern c
desc: do the extern "C" blocks get produced for non-empty input
idl: |
interface Foo {
foofn() -> void
}
test_common.h:
- |
#if defined(__cplusplus)
extern "C" {
#endif
- |
#if defined(__cplusplus)
}
#endif