| #include <stdarg.h> |
| #include <stdbool.h> |
| #include <stdint.h> |
| #include <stdlib.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif // __cplusplus |
| |
| void ptr_as_array(uint32_t n, const uint32_t arg[3], const uint64_t *v); |
| |
| void ptr_as_array1(uint32_t n, const uint32_t arg[3], uint64_t v[4]); |
| |
| void ptr_as_array2(uint32_t n, uint32_t arg[], const uint64_t v[]); |
| |
| void ptr_as_array_wrong_syntax(uint32_t *arg, const uint32_t *v, const uint32_t*); |
| |
| void ptr_as_array_unnamed(uint32_t*, const uint32_t*); |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif // __cplusplus |