存在中文乱码问题

官网: libarchive - 用于读取和写入 tar、cpio、zip、ISO 和其他存档格式的 C 库和命令行工具 @ GitHub

GitHub源码:Bluewind/libarchive: Multi-format archive and compression library (github.com)

参考: C++ archive_write_data函数代码示例 - 纯净天空 (vimsky.com)

来自官网例子:Examples · libarchive/libarchive Wiki (github.com)

下载 Libarchive downloads libarchive-v3.6.0-win64

解压,和文件拷贝

参考:libarchive/examples/untar.c at master · Bluewind/libarchive (github.com)

项目实现:untar.c

/*** @Brief :解压文件* @param  filename 解压文件名* @param  outPath 解压路径,空为当前路径* @return true* @return false*/static bool extract(const char *filename, const char *outPath = nullptr);
bool CDataFactory::extract(const char *filename, const char *outPath)
{if (filename && outPath)qDebug() << "extract filePath=" << filename << ",outPath=" << outPath;if (!filename){qCritical() << " extract filename = nullptr";return false;}if (outPath){QDir dir(outPath);if (!dir.exists()){dir.mkdir(outPath);}}struct archive *a;struct archive *ext;struct archive_entry *entry;int flags;int r;bool result = true;/* Select which attributes we want to restore. */flags = ARCHIVE_EXTRACT_TIME;flags |= ARCHIVE_EXTRACT_PERM;flags |= ARCHIVE_EXTRACT_ACL;flags |= ARCHIVE_EXTRACT_FFLAGS;a = archive_read_new();archive_read_support_format_all(a);// archive_read_support_filter_all(a);archive_read_support_compression_all(a);ext = archive_write_disk_new();archive_write_disk_set_options(ext, flags);archive_write_disk_set_standard_lookup(ext);r = archive_read_open_filename(a, filename, 1024 * 1024);if (r){qCritical() << "archive_read_open_filename faild";result = false;goto finish;}for (;;){r = archive_read_next_header(a, &entry);if (r == ARCHIVE_EOF)break;if (r < ARCHIVE_OK)qWarning() << "archive_read_next_header faild, < ARCHIVE_OK err=" << archive_error_string(a);if (r < ARCHIVE_WARN){qCritical() << "archive_read_next_header faild,err=" << archive_error_string(a);result = false;goto finish;}if (outPath){const char *pathEntry = archive_entry_pathname(entry);if (pathEntry){std::string path = std::string(outPath) + pathEntry;archive_entry_set_pathname(entry, path.c_str());}}r = archive_write_header(ext, entry);if (r < ARCHIVE_OK)qWarning() << "archive_write_header faild,<ARCHIVE_OK err=" << archive_error_string(ext);else if (archive_entry_size(entry) > 0){r = copy_data(a, ext);if (r < ARCHIVE_WARN){qCritical() << "copy_data faild";result = false;goto finish;}}r = archive_write_finish_entry(ext);if (r < ARCHIVE_OK){qWarning() << "archive_write_finish_entry faild,<ARCHIVE_OK err=" << archive_error_string(ext);}if (r < ARCHIVE_WARN){qCritical() << "archive_write_finish_entry faild  return false!";result = false;goto finish;}}
finish:archive_read_close(a);archive_read_free(a);archive_write_close(ext);archive_write_free(ext);return result;
}static int copy_data(struct archive *ar, struct archive *aw)
{int r;const void *buff;size_t size;la_int64_t offset;for (;;){r = archive_read_data_block(ar, &buff, &size, &offset);if (r == ARCHIVE_EOF)return (ARCHIVE_OK);if (r < ARCHIVE_OK)return (r);r = archive_write_data_block(aw, buff, size, offset);if (r < ARCHIVE_OK){fprintf(stderr, "%s\n", archive_error_string(aw));return (r);}}
}

压缩文件

voidwrite_archive(const char *outname, const char **filename)
{struct archive *a;struct archive_entry *entry;struct stat st;char buff[8192];int len;int fd;a = archive_write_new();archive_write_add_filter_gzip(a);archive_write_set_format_pax_restricted(a); // Note 1archive_write_open_filename(a, outname);while (*filename) {stat(*filename, &st);entry = archive_entry_new(); // Note 2archive_entry_set_pathname(entry, *filename);archive_entry_set_size(entry, st.st_size); // Note 3archive_entry_set_filetype(entry, AE_IFREG);archive_entry_set_perm(entry, 0644);archive_write_header(a, entry);fd = open(*filename, O_RDONLY);len = read(fd, buff, sizeof(buff));while ( len > 0 ) {archive_write_data(a, buff, len);len = read(fd, buff, sizeof(buff));}close(fd);archive_entry_free(entry);filename++;}archive_write_close(a); // Note 4archive_write_free(a); // Note 5
}int main(int argc, const char **argv)
{const char *outname;argv++;outname = *argv++;write_archive(outname, argv);return 0;
}

压缩

minitar.c

#makefile
#
# Adjust the following to control which options minitar gets
# built with.  See comments in minitar.c for details.
#
CFLAGS=                \-DNO_BZIP2_CREATE    \-I../../libarchive    \-g# How to link against libarchive.
LIBARCHIVE=    ../../libarchive/libarchive.aall: minitarminitar: minitar.occ -g -o minitar minitar.o $(LIBARCHIVE) -lz -lbz2strip minitarls -l minitarminitar.o: minitar.cclean::rm -f *.orm -f minitarrm -f *~
/*-
* This file is in the public domain.
* Do with it as you will.
*//*-
* This is a compact "tar" program whose primary goal is small size.
* Statically linked, it can be very small indeed.  This serves a number
* of goals:
*   o a testbed for libarchive (to check for link pollution),
*   o a useful tool for space-constrained systems (boot floppies, etc),
*   o a place to experiment with new implementation ideas for bsdtar,
*   o a small program to demonstrate libarchive usage.
*
* Use the following macros to suppress features:
*   NO_BZIP2 - Implies NO_BZIP2_CREATE and NO_BZIP2_EXTRACT
*   NO_BZIP2_CREATE - Suppress bzip2 compression support.
*   NO_BZIP2_EXTRACT - Suppress bzip2 auto-detection and decompression.
*   NO_COMPRESS - Implies NO_COMPRESS_CREATE and NO_COMPRESS_EXTRACT
*   NO_COMPRESS_CREATE - Suppress compress(1) compression support
*   NO_COMPRESS_EXTRACT - Suppress compress(1) auto-detect and decompression.
*   NO_CREATE - Suppress all archive creation support.
*   NO_CPIO_EXTRACT - Suppress auto-detect and dearchiving of cpio archives.
*   NO_GZIP - Implies NO_GZIP_CREATE and NO_GZIP_EXTRACT
*   NO_GZIP_CREATE - Suppress gzip compression support.
*   NO_GZIP_EXTRACT - Suppress gzip auto-detection and decompression.
*   NO_LOOKUP - Try to avoid getpw/getgr routines, which can be very large
*   NO_TAR_EXTRACT - Suppress tar extraction
*
* With all of the above macros defined (except NO_TAR_EXTRACT), you
* get a very small program that can recognize and extract essentially
* any uncompressed tar archive.  On FreeBSD 5.1, this minimal program
* is under 64k, statically linked, which compares rather favorably to
*         main(){printf("hello, world");}
* which is over 60k statically linked on the same operating system.
* Without any of the above macros, you get a static executable of
* about 180k with a lot of very sophisticated modern features.
* Obviously, it's trivial to add support for ISO, Zip, mtree,
* lzma/xz, etc.  Just fill in the appropriate setup calls.
*/#include <sys/types.h>
#include <sys/stat.h>#include <archive.h>
#include <archive_entry.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>/*
* NO_CREATE implies NO_BZIP2_CREATE and NO_GZIP_CREATE and NO_COMPRESS_CREATE.
*/
#ifdef NO_CREATE
#undef NO_BZIP2_CREATE
#define NO_BZIP2_CREATE
#undef NO_COMPRESS_CREATE
#define NO_COMPRESS_CREATE
#undef NO_GZIP_CREATE
#define NO_GZIP_CREATE
#endif/*
* The combination of NO_BZIP2_CREATE and NO_BZIP2_EXTRACT is
* equivalent to NO_BZIP2.
*/
#ifdef NO_BZIP2_CREATE
#ifdef NO_BZIP2_EXTRACT
#undef NO_BZIP2
#define NO_BZIP2
#endif
#endif#ifdef NO_BZIP2
#undef NO_BZIP2_EXTRACT
#define NO_BZIP2_EXTRACT
#undef NO_BZIP2_CREATE
#define NO_BZIP2_CREATE
#endif/*
* The combination of NO_COMPRESS_CREATE and NO_COMPRESS_EXTRACT is
* equivalent to NO_COMPRESS.
*/
#ifdef NO_COMPRESS_CREATE
#ifdef NO_COMPRESS_EXTRACT
#undef NO_COMPRESS
#define NO_COMPRESS
#endif
#endif#ifdef NO_COMPRESS
#undef NO_COMPRESS_EXTRACT
#define NO_COMPRESS_EXTRACT
#undef NO_COMPRESS_CREATE
#define NO_COMPRESS_CREATE
#endif/*
* The combination of NO_GZIP_CREATE and NO_GZIP_EXTRACT is
* equivalent to NO_GZIP.
*/
#ifdef NO_GZIP_CREATE
#ifdef NO_GZIP_EXTRACT
#undef NO_GZIP
#define NO_GZIP
#endif
#endif#ifdef NO_GZIP
#undef NO_GZIP_EXTRACT
#define NO_GZIP_EXTRACT
#undef NO_GZIP_CREATE
#define NO_GZIP_CREATE
#endif#ifndef NO_CREATE
static void     create(const char *filename, int compress, const char **argv);
#endif
static void     errmsg(const char *);
static void     extract(const char *filename, int do_extract, int flags);
static int      copy_data(struct archive *, struct archive *);
static void     msg(const char *);
static void     usage(void);static int verbose = 0;int
main(int argc, const char **argv)
{const char *filename = NULL;int compress, flags, mode, opt;(void)argc;mode = 'x';verbose = 0;compress = '\0';flags = ARCHIVE_EXTRACT_TIME;/* Among other sins, getopt(3) pulls in printf(3). */while (*++argv != NULL && **argv == '-') {const char *p = *argv + 1;while ((opt = *p++) != '\0') {switch (opt) {
#ifndef NO_CREATEcase 'c':mode = opt;break;
#endifcase 'f':if (*p != '\0')filename = p;elsefilename = *++argv;p += strlen(p);break;
#ifndef NO_BZIP2_CREATEcase 'j':compress = opt;break;
#endifcase 'p':flags |= ARCHIVE_EXTRACT_PERM;flags |= ARCHIVE_EXTRACT_ACL;flags |= ARCHIVE_EXTRACT_FFLAGS;break;case 't':mode = opt;break;case 'v':verbose++;break;case 'x':mode = opt;break;
#ifndef NO_BZIP2_CREATEcase 'y':compress = opt;break;
#endif
#ifndef NO_COMPRESS_CREATEcase 'Z':compress = opt;break;
#endif
#ifndef NO_GZIP_CREATEcase 'z':compress = opt;break;
#endifdefault:usage();}}}switch (mode) {
#ifndef NO_CREATEcase 'c':create(filename, compress, argv);break;
#endifcase 't':extract(filename, 0, flags);break;case 'x':extract(filename, 1, flags);break;}return (0);
}#ifndef NO_CREATE
static char buff[16384];static void
create(const char *filename, int compress, const char **argv)
{struct archive *a;struct archive *disk;struct archive_entry *entry;ssize_t len;int fd;a = archive_write_new();switch (compress) {
#ifndef NO_BZIP2_CREATEcase 'j': case 'y':archive_write_add_filter_bzip2(a);break;
#endif
#ifndef NO_COMPRESS_CREATEcase 'Z':archive_write_add_filter_compress(a);break;
#endif
#ifndef NO_GZIP_CREATEcase 'z':archive_write_add_filter_gzip(a);break;
#endifdefault:archive_write_add_filter_none(a);break;}archive_write_set_format_ustar(a);if (filename != NULL && strcmp(filename, "-") == 0)filename = NULL;archive_write_open_filename(a, filename);disk = archive_read_disk_new();
#ifndef NO_LOOKUParchive_read_disk_set_standard_lookup(disk);
#endifwhile (*argv != NULL) {struct archive *disk = archive_read_disk_new();int r;r = archive_read_disk_open(disk, *argv);if (r != ARCHIVE_OK) {errmsg(archive_error_string(disk));errmsg("\n");exit(1);}for (;;) {int needcr = 0;entry = archive_entry_new();r = archive_read_next_header2(disk, entry);if (r == ARCHIVE_EOF)break;if (r != ARCHIVE_OK) {errmsg(archive_error_string(disk));errmsg("\n");exit(1);}archive_read_disk_descend(disk);if (verbose) {msg("a ");msg(archive_entry_pathname(entry));needcr = 1;}r = archive_write_header(a, entry);if (r < ARCHIVE_OK) {errmsg(": ");errmsg(archive_error_string(a));needcr = 1;}if (r == ARCHIVE_FATAL)exit(1);if (r > ARCHIVE_FAILED) {
#if 0/* Ideally, we would be able to use* the same code to copy a body from* an archive_read_disk to an* archive_write that we use for* copying data from an archive_read* to an archive_write_disk.* Unfortunately, this doesn't quite* work yet. */copy_data(disk, a);
#else/* For now, we use a simpler loop to copy data* into the target archive. */fd = open(archive_entry_sourcepath(entry), O_RDONLY);len = read(fd, buff, sizeof(buff));while (len > 0) {archive_write_data(a, buff, len);len = read(fd, buff, sizeof(buff));}close(fd);
#endif}archive_entry_free(entry);if (needcr)msg("\n");}archive_read_close(disk);archive_read_free(disk);argv++;}archive_write_close(a);archive_write_free(a);
}
#endifstatic void
extract(const char *filename, int do_extract, int flags)
{struct archive *a;struct archive *ext;struct archive_entry *entry;int r;a = archive_read_new();ext = archive_write_disk_new();archive_write_disk_set_options(ext, flags);
#ifndef NO_BZIP2_EXTRACTarchive_read_support_filter_bzip2(a);
#endif
#ifndef NO_GZIP_EXTRACTarchive_read_support_filter_gzip(a);
#endif
#ifndef NO_COMPRESS_EXTRACTarchive_read_support_filter_compress(a);
#endif
#ifndef NO_TAR_EXTRACTarchive_read_support_format_tar(a);
#endif
#ifndef NO_CPIO_EXTRACTarchive_read_support_format_cpio(a);
#endif
#ifndef NO_LOOKUParchive_write_disk_set_standard_lookup(ext);
#endifif (filename != NULL && strcmp(filename, "-") == 0)filename = NULL;if ((r = archive_read_open_filename(a, filename, 10240))) {errmsg(archive_error_string(a));errmsg("\n");exit(r);}for (;;) {r = archive_read_next_header(a, &entry);if (r == ARCHIVE_EOF)break;if (r != ARCHIVE_OK) {errmsg(archive_error_string(a));errmsg("\n");exit(1);}if (verbose && do_extract)msg("x ");if (verbose || !do_extract)msg(archive_entry_pathname(entry));if (do_extract) {r = archive_write_header(ext, entry);if (r != ARCHIVE_OK)errmsg(archive_error_string(a));elsecopy_data(a, ext);}if (verbose || !do_extract)msg("\n");}archive_read_close(a);archive_read_free(a);exit(0);
}static int
copy_data(struct archive *ar, struct archive *aw)
{int r;const void *buff;size_t size;int64_t offset;for (;;) {r = archive_read_data_block(ar, &buff, &size, &offset);if (r == ARCHIVE_EOF) {errmsg(archive_error_string(ar));return (ARCHIVE_OK);}if (r != ARCHIVE_OK)return (r);r = archive_write_data_block(aw, buff, size, offset);if (r != ARCHIVE_OK) {errmsg(archive_error_string(ar));return (r);}}
}static void
msg(const char *m)
{write(1, m, strlen(m));
}static void
errmsg(const char *m)
{if (m == NULL) {m = "Error: No error description provided.\n";}write(2, m, strlen(m));
}static void
usage(void)
{
/* Many program options depend on compile options. */const char *m = "Usage: minitar [-"
#ifndef NO_CREATE"c"
#endif
#ifndef NO_BZIP2"j"
#endif"tvx"
#ifndef NO_BZIP2"y"
#endif
#ifndef NO_COMPRESS"Z"
#endif
#ifndef NO_GZIP"z"
#endif"] [-f file] [file]\n";errmsg(m);exit(1);
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.pswp.cn/bicheng/86782.shtml
繁体地址,请注明出处:http://hk.pswp.cn/bicheng/86782.shtml
英文地址,请注明出处:http://en.pswp.cn/bicheng/86782.shtml

如若内容造成侵权/违法违规/事实不符,请联系英文站点网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AutoGPT,自主完成复杂任务

AutoGPT是一个开源的AI Agent项目&#xff0c;它的核心目标是让AI能够自主完成复杂任务&#xff0c;而不仅仅是回答单个问题。简单来说&#xff0c;它让AI具备了"自主思考和行动"的能力。 1. AutoGPT的核心概念 什么是AI Agent&#xff1f; AI Agent&#xff08;智…

lambda、function基础/响应式编程基础

lambda表达式 只要是函数式接口&#xff08;接口内只有一个未实现的方法&#xff0c;可以有其它默认方法&#xff09;&#xff0c;就可以用lambda表达式&#xff0c;也就是快速new一个匿名内部类。 实例化接口的三种方式 继承接口&#xff0c;并实现接口 直接实现匿名内部类 …

OpenTiny 体验官实操活动 | 快速体验 TinyVue 组件库的智能化交互能力

实验简介 通过体验基于标准 MCP 协议的 Web 智能组件库——TinyVue&#xff0c;开发者可以了解 AI 智能体控制 TinyVue 智能组件的各类行为。本次实验主要是在 TinyVue 官网上&#xff0c;开发者能够通过 AI 对话框&#xff0c;以语音或文字方式与网站组件进行互动&#xff0c…

秋招Day15 - Redis - 基础

什么是Redis&#xff1f; Redis是一种基于键值对的NoSQL数据库。 主要的特点是把数据放在内存中&#xff0c;读写速度相比于磁盘会快很多。 对于性能要求很高的场景&#xff0c;比如缓存热点数据&#xff0c;防止接口爆刷&#xff0c;都会用到Redis Redis还支持持久化&…

权限提升-工作流

一、Windows 权限提升 操作阶段 对应工具 说明 系统补丁与漏洞查询 systeminfo、WindowsVulnScan、wesng 提取 KB 补丁号&#xff0c;匹配 CVE 漏洞&#xff08;如 CVE-2020-1054&#xff09; 内核漏洞提权 MSF&#xff08;local_exploit_suggester&#xff09;、CVE 对…

c++手撕线程池

C手撕线程池 #include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <time.h>#define LL_ADD(item, list) do{ \item->prev NULL; \item->next list; \if…

cocos creator 3.8 - 精品源码 - 六边形消消乐(六边形叠叠乐、六边形堆叠战士)

cocos creator 3.8 - 精品源码 - 六边形消消乐 游戏介绍功能介绍免费体验下载开发环境游戏截图免费体验 游戏介绍 六边形堆叠战士(六边形消消消)是一款脱胎于2048、1010&#xff0c;基于俄罗斯方块的魔性方块达人小游戏&#xff0c;可以多方向多造型消除哦&#xff01; 功能介…

3ds Max高效运行配置核心要素

要保障3ds Max流畅运行&#xff0c;需围绕计算性能、图形处理、数据吞吐三大维度构建硬件体系。不同工作环节对硬件需求存在显著差异&#xff1a; 一、核心组件配置原则 CPU&#xff1a;线程与频率双优化 建模/视口操作&#xff1a;依赖高主频&#xff08;建议≥4.0GHz&#…

实变与泛函题解-心得笔记【16】

文章目录 集合参考文献 集合 参考文献 《实变函数论与泛函分析》

道路交通标志检测数据集-智能地图与导航 交通监控与执法 智慧城市交通管理-2,000 张图像

道路交通标志检测数据集 &#x1f4e6; 已发布目标检测数据集合集&#xff08;持续更新&#xff09;&#x1f6a7; 道路交通标志检测数据集介绍&#x1f4cc; 数据集概览包含类别 &#x1f3af; 应用场景&#x1f5bc; 数据样本展示 YOLOv8 训练实战&#x1f4e6; 1. 环境配置 …

一、jenkins介绍和gitlab部署

一、jenkins介绍 jenkins和持续集成的关系 Jenkins 是实现持续集成&#xff08;CI&#xff09;最流行的自动化工具&#xff0c;它负责自动构建、测试和部署代码&#xff0c;确保团队能频繁且可靠地集成代码变更。 持续集成和敏捷开发的关系 敏捷开发是一种"快速迭代、…

k3s or kubesphere helm安装报错dial tcp 127.0.0.1:8080: connect: connection refused

在安装kubesphere时报错 Error: Kubernetes cluster unreachable: Get "http://localhost:8080/version": dial tcp 127.0.0.1:8080: connect: connection refused helm.go:92: 2025-06-27 15:14:43.30908177 0000 UTC m0.033127135 [debug] Get "http://localh…

使用datafusion和tpchgen-rs进行完整的TPCH 22个查询的基准测试

1.从源码编译bench二进制文件。 下载datafusion源码, 解压到目录&#xff0c;比如/par/dafu&#xff0c; cd /par/dafu/benchmarks export CARGO_INCREMENTAL1 export PATH/par:/par/mold240/bin:$PATH因为mold默认使用并行编译&#xff0c;而这些二进制文件很大&#xff0c;如…

【软考高项论文】论信息系统项目的干系人管理

摘要 在信息系统项目管理里&#xff0c;干系人管理极为关键&#xff0c;它不仅决定项目成败&#xff0c;还对项目进度、质量和成本有着直接影响。本文结合作者2024年6月参与管理的信息系统项目&#xff0c;详细阐述了项目干系人管理的过程&#xff0c;分析了干系人管理与沟通管…

PB应用变为Rust语言方案

从PB(PowerBuilder)迁移到现代开发软件 PowerBuilder(PB)作为早期的快速应用开发工具,曾广泛应用于企业级数据库应用开发。随着技术发展,PB逐渐面临以下挑战,促使企业转向现代开发工具: 技术陈旧与维护困难 PB的架构基于较老的客户端-服务器模式,难以适应云原生、微…

【大模型】Query 改写常见Prompt 模板

下面对常见的几种“Query 改写”Prompt 模板进行中英文对照&#xff0c;并在注释中给出中文说明&#xff0c;帮助中国用户快速理解与使用。 根据调研&#xff0c;企业级 Query 改写模块需要覆盖多种常见场景&#xff0c;包括拼写纠错、中英混合、省略上下文、多义词扩展、专业术…

西门子S7-200 SMART PLC:小型自动化领域的高效之选

在工业自动化领域&#xff0c;小型PLC作为设备控制的核心组件&#xff0c;其性能、灵活性和性价比始终是用户关注的重点。西门子推出的S7-200 SMART可编程控制器&#xff0c;凭借对中国市场需求的精准把握&#xff0c;成为了小型自动化解决方案的标杆产品。本文将从产品亮点、技…

使用iperf3测试网络的方法

深入掌握网络性能测试&#xff1a;iperf3全指南 在网络优化、故障排查和带宽验证中&#xff0c;iperf 是工程师必备的利器。这款开源工具通过模拟数据流&#xff0c;精准测量​​带宽、抖动、丢包率​​等核心指标。本文将结合实战经验&#xff0c;详解iperf的安装、参数配置和…

Level2.11继承

一、继承 #动物# #老虎、狮子、大象 #动物有共性 ##定义一个动物&#xff1a;1.有4条腿&#xff1b;2.陆地上跑&#xff1b;3.需要进食&#xff08;属性能力&#xff09; ##猫&#xff1a;同上&#xff08;继承了动物的属性和能力&#xff09; ##老鼠&#xff1a;同上#Python…

Class3Softmax回归

Class3Softmax回归 回归VS分类 回归是估计一个连续值 分类是预测一个离散类别 回归分类单连续值输出通常为多个输出自然区间R输出i是预测为第i类的置信度跟真实值的区别作为损失 生活中的分类问题 1.垃圾分类 类别&#xff1a; 可回收物 湿垃圾&#xff08;厨余垃圾&#xff0…