From: Karel Zak Date: Mon, 25 Jan 2016 11:57:10 +0000 (+0100) Subject: libsmartcols: document v2.27 symbols X-Git-Tag: v2.28-rc1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=982034c3d1ab4dd5bb376fb95e494885cea67bf5;p=thirdparty%2Futil-linux.git libsmartcols: document v2.27 symbols Signed-off-by: Karel Zak --- diff --git a/libsmartcols/docs/libsmartcols-docs.xml b/libsmartcols/docs/libsmartcols-docs.xml index e4b6a13534..b8e02242af 100644 --- a/libsmartcols/docs/libsmartcols-docs.xml +++ b/libsmartcols/docs/libsmartcols-docs.xml @@ -49,6 +49,10 @@ available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/. API Index + + Index of new symbols in 2.27 + + Index of new symbols in 2.28 diff --git a/libsmartcols/src/column.c b/libsmartcols/src/column.c index b31b39063f..a01c0b5999 100644 --- a/libsmartcols/src/column.c +++ b/libsmartcols/src/column.c @@ -272,6 +272,8 @@ int scols_column_set_cmpfunc(struct libscols_column *cl, * Gets the value of @cl's flag hidden. * * Returns: hidden flag value, negative value in case of an error. + * + * Since: 2.27 */ int scols_column_is_hidden(struct libscols_column *cl) { diff --git a/libsmartcols/src/table.c b/libsmartcols/src/table.c index a2b8fbe251..d5b5e3e3a8 100644 --- a/libsmartcols/src/table.c +++ b/libsmartcols/src/table.c @@ -104,6 +104,8 @@ void scols_unref_table(struct libscols_table *tb) * The table name is used for example for JSON top level object name. * * Returns: 0, a negative number in case of an error. + * + * Since: 2.27 */ int scols_table_set_name(struct libscols_table *tb, const char *name) { @@ -834,6 +836,8 @@ int scols_table_enable_raw(struct libscols_table *tb, int enable) * (export, raw, JSON, ...) are mutually exclusive. * * Returns: 0 on success, negative number in case of an error. + * + * Since: 2.27 */ int scols_table_enable_json(struct libscols_table *tb, int enable) { @@ -1024,6 +1028,8 @@ int scols_table_is_raw(struct libscols_table *tb) * @tb: table * * Returns: 1 if JSON output format is enabled. + * + * Since: 2.27 */ int scols_table_is_json(struct libscols_table *tb) {