git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
18 lines
262 B
C
18 lines
262 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __TEST_FIFO_H__
|
|
#define __TEST_FIFO_H__
|
|
|
|
#include <ztest.h>
|
|
#include <irq_offload.h>
|
|
|
|
typedef struct fdata {
|
|
sys_snode_t snode;
|
|
uint32_t data;
|
|
} fdata_t;
|
|
#endif
|