libsmartcols: (docs) add missing references

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2020-07-22 10:34:14 +02:00
parent e0d9243a14
commit 40a4845693
2 changed files with 11 additions and 1 deletions

View File

@ -78,4 +78,8 @@ available from https://www.kernel.org/pub/linux/utils/util-linux/.
<title>Index of new symbols in 2.34</title> <title>Index of new symbols in 2.34</title>
<xi:include href="xml/api-index-2.34.xml"><xi:fallback /></xi:include> <xi:include href="xml/api-index-2.34.xml"><xi:fallback /></xi:include>
</index> </index>
<index role="2.35">
<title>Index of new symbols in 2.35</title>
<xi:include href="xml/api-index-2.35.xml"><xi:fallback /></xi:include>
</index>
</book> </book>

View File

@ -483,6 +483,8 @@ int scols_table_next_column(struct libscols_table *tb,
* Sets @iter to the position of @cl in the file @tb. * Sets @iter to the position of @cl in the file @tb.
* *
* Returns: 0 on success, negative number in case of error. * Returns: 0 on success, negative number in case of error.
*
* Since: 2.35
*/ */
int scols_table_set_columns_iter( int scols_table_set_columns_iter(
struct libscols_table *tb, struct libscols_table *tb,
@ -1162,7 +1164,7 @@ int scols_table_enable_header_repeat(struct libscols_table *tb, int enable)
* The extra space after last column is ignored by default. The output * The extra space after last column is ignored by default. The output
* maximization add padding for all columns. * maximization add padding for all columns.
* *
* This setting is mutually exclusive to cols_table_enable_minout(). * This setting is mutually exclusive to scols_table_enable_minout().
* *
* Returns: 0 on success, negative number in case of an error. * Returns: 0 on success, negative number in case of an error.
*/ */
@ -1188,6 +1190,8 @@ int scols_table_enable_maxout(struct libscols_table *tb, int enable)
* This setting is mutually exclusive to cols_table_enable_maxout(). * This setting is mutually exclusive to cols_table_enable_maxout().
* *
* Returns: 0 on success, negative number in case of an error. * Returns: 0 on success, negative number in case of an error.
*
* Since: 2.35
*/ */
int scols_table_enable_minout(struct libscols_table *tb, int enable) int scols_table_enable_minout(struct libscols_table *tb, int enable)
{ {
@ -1373,6 +1377,8 @@ int scols_table_is_maxout(const struct libscols_table *tb)
* @tb: table * @tb: table
* *
* Returns: 1 if output minimization is enabled or 0 * Returns: 1 if output minimization is enabled or 0
*
* Since: 2.35
*/ */
int scols_table_is_minout(const struct libscols_table *tb) int scols_table_is_minout(const struct libscols_table *tb)
{ {