libsmartcols/src/smartcolsP.h \
libsmartcols/src/iter.c \
libsmartcols/src/symbols.c \
+ libsmartcols/src/cell.c \
$(smartcolsinc_HEADERS)
nodist_libsmartcols_la_SOURCES = libsmartcols/src/smartcolsP.h
--- /dev/null
+/*
+ * cell.c - functions for table handling at the cell level
+ *
+ * Copyright (C) 2014 Ondrej Oprala <ooprala@redhat.com>
+ * Copyright (C) 2014 Karel Zak <kzak@redhat.com>
+ *
+ * This file may be redistributed under the terms of the
+ * GNU Lesser General Public License.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+
+#include "smartcolsP.h"
+
+/*
+ * The cell has no ref-counting, free() and new() functions. All is
+ * handled by libscols_line.
+ */
+
+int scols_cell_set_data(struct libscols_cell *ce, const char *str)
+{
+ char *p = NULL;
+
+ assert(ce);
+
+ if (!ce)
+ return -EINVAL;
+ if (str) {
+ p = strdup(str);
+ if (!p)
+ return -ENOMEM;
+ }
+ free(ce->data);
+ ce->data = p;
+ return 0;
+}
+
+const char *scols_cell_get_data(const struct libscols_cell *ce)
+{
+ assert(ce);
+ return ce ? ce->data : NULL;
+}
+
+int scols_cell_set_color(struct libscols_cell *ce, const char *color)
+{
+ char *p = NULL;
+
+ assert(ce);
+
+ if (!ce)
+ return -EINVAL;
+ if (color) {
+ p = strdup(color);
+ if (!p)
+ return -ENOMEM;
+ }
+ free(ce->color);
+ ce->color = p;
+ return 0;
+}
+
+const char *scols_cell_get_color(const struct libscols_cell *ce)
+{
+ assert(ce);
+ return ce ? ce->color : NULL;
+}
+
struct libscols_iter;
struct libscols_symbols;
+struct libscols_cell;
/* iter.c */
extern int scols_symbols_set_vertical(struct libscols_symbols *sb, const char *str);
extern int scols_symbols_set_right(struct libscols_symbols *sb, const char *str);
+/* cell.c */
+extern int scols_cell_set_data(struct libscols_cell *ce, const char *str);
+extern const char *scols_cell_get_data(const struct libscols_cell *ce);
+extern int scols_cell_set_color(struct libscols_cell *ce, const char *color);
+extern const char *scols_cell_get_color(const struct libscols_cell *ce);
+
#ifdef __cplusplus
}
#endif