代码拉取完成,页面将自动刷新
同步操作将从 src-anolis-os/systemd 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From c4f60df10a2716c94d30462a118f60d916d537a2 Mon Sep 17 00:00:00 2001
From: Lennart Poettering <[email protected]>
Date: Fri, 9 Nov 2018 11:38:12 +0100
Subject: [PATCH] format-table: add calls to query the data in a specific cell
(cherry picked from commit 62d99b39709f903f8a66a9aae757deb5546a53eb)
Related: #1689832
---
src/basic/format-table.c | 22 ++++++++++++++++++++++
src/basic/format-table.h | 3 +++
2 files changed, 25 insertions(+)
diff --git a/src/basic/format-table.c b/src/basic/format-table.c
index 3fcb97475c..0a1777e9a2 100644
--- a/src/basic/format-table.c
+++ b/src/basic/format-table.c
@@ -1438,3 +1438,25 @@ TableCell *table_get_cell(Table *t, size_t row, size_t column) {
return TABLE_INDEX_TO_CELL(i);
}
+
+const void *table_get(Table *t, TableCell *cell) {
+ TableData *d;
+
+ assert(t);
+
+ d = table_get_data(t, cell);
+ if (!d)
+ return NULL;
+
+ return d->data;
+}
+
+const void* table_get_at(Table *t, size_t row, size_t column) {
+ TableCell *cell;
+
+ cell = table_get_cell(t, row, column);
+ if (!cell)
+ return NULL;
+
+ return table_get(t, cell);
+}
diff --git a/src/basic/format-table.h b/src/basic/format-table.h
index 40fea79f78..a2bb2e0846 100644
--- a/src/basic/format-table.h
+++ b/src/basic/format-table.h
@@ -68,3 +68,6 @@ size_t table_get_rows(Table *t);
size_t table_get_columns(Table *t);
TableCell *table_get_cell(Table *t, size_t row, size_t column);
+
+const void *table_get(Table *t, TableCell *cell);
+const void *table_get_at(Table *t, size_t row, size_t column);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。