33 lines
782 B
C
33 lines
782 B
C
![]() |
// +FHDR------------------------------------------------------------
|
||
|
// Copyright (c) 2022 SmartLogic.
|
||
|
// ALL RIGHTS RESERVED
|
||
|
// -----------------------------------------------------------------
|
||
|
// Filename : test.c
|
||
|
// Author : xianfeng.du
|
||
|
// Created On : 2022-11-25
|
||
|
// Last Modified :
|
||
|
// -----------------------------------------------------------------
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// -FHDR------------------------------------------------------------
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <string.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include "typedef.h"
|
||
|
#include "ucp_printf.h"
|
||
|
|
||
|
extern uint8_t gu8_main_flag;
|
||
|
|
||
|
int32_t test_case(uint32_t argc, int32_t* argvp)
|
||
|
{
|
||
|
UCP_PRINT_DEBUG("start running testcase 50.");
|
||
|
|
||
|
gu8_main_flag = 0;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|