Files
luban-lite/packages/third-party/awtk-ui/awtk/src/fscript_ext/fscript_crc.h
刘可亮 3b4064f334 v1.0.2
2023-11-30 19:48:02 +08:00

36 lines
662 B
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* File: fscript_crc.h
* Author: AWTK Develop Team
* Brief: crc functions for fscript
*
* Copyright (c) 2020 - 2023 Guangzhou ZHIYUAN Electronics Co.,Ltd.
*
*/
/**
* History:
* ================================================================
* 2021-01-04 Li XianJing <lixianjing@zlg.cn> created
*
*/
#ifndef TK_FSCRIPT_CRC_H
#define TK_FSCRIPT_CRC_H
#include "tkc/str.h"
#include "tkc/object.h"
BEGIN_C_DECLS
/**
* @method fscript_crc_register
* 注册crc16/crc32/cksum等函数。
*
* @return {ret_t} 返回RET_OK表示成功否则表示失败。
*/
ret_t fscript_crc_register(void);
END_C_DECLS
#endif /*TK_FSCRIPT_CRC_H*/