/usr/include/gutenprint/string-list.h is in libgutenprint-dev 5.2.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /*
* libgimpprint string list functions.
*
* Copyright 1997-2000 Michael Sweet (mike@easysw.com) and
* Robert Krawitz (rlk@alum.mit.edu)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* @file gutenprint/string-list.h
* @brief String list functions.
*/
#ifndef GUTENPRINT_STRING_LIST_H
#define GUTENPRINT_STRING_LIST_H
#ifdef __cplusplus
extern "C" {
#endif
struct stp_string_list;
/** The string_list opaque data type. */
typedef struct stp_string_list stp_string_list_t;
/**
* String parameter.
* Representation of a choice list of strings. The choices themselves
* consist of a key and a human-readable name. The list object is
* opaque.
*/
typedef struct
{
const char *name, /*!< Option name (key, untranslated). */
*text; /*!< Human-readable (translated) text. */
} stp_param_string_t;
/****************************************************************
* *
* LISTS OF STRINGS *
* *
****************************************************************/
/* The string_list opaque data type is defined in vars.h */
extern stp_string_list_t *
stp_string_list_create(void);
extern void
stp_string_list_destroy(stp_string_list_t *list);
extern stp_param_string_t *
stp_string_list_param(const stp_string_list_t *list, size_t element);
extern stp_param_string_t *
stp_string_list_find(const stp_string_list_t *list, const char *name);
extern size_t
stp_string_list_count(const stp_string_list_t *list);
extern stp_string_list_t *
stp_string_list_create_copy(const stp_string_list_t *list);
extern void
stp_string_list_add_string(stp_string_list_t *list,
const char *name, const char *text);
/* Don't check safety of the string name (no whitespace and such) */
extern void
stp_string_list_add_string_unsafe(stp_string_list_t *list,
const char *name, const char *text);
extern void
stp_string_list_remove_string(stp_string_list_t *list, const char *name);
extern stp_string_list_t *
stp_string_list_create_from_params(const stp_param_string_t *list,
size_t count);
extern int
stp_string_list_is_present(const stp_string_list_t *list,
const char *value);
#ifdef __cplusplus
}
#endif
#endif /* GUTENPRINT_STRING_LIST_H */
|