2020-09-07 18:50:37 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
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*);
|
2020-10-05 19:43:15 +03:00
|
|
|
|
|
|
|
void ptr_as_array_unnamed(uint32_t*, const uint32_t*);
|