This file is indexed.

/usr/include/sidl_String.h is in libsidl-dev 1.4.0.dfsg-8build3.

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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
 * File:        sidl_String.h
 * Copyright:   (c) 2001 Lawrence Livermore National Security, LLC
 * Revision:    @(#) $Revision: 6482 $
 * Date:        $Date: 2008-08-21 15:50:53 -0700 (Thu, 21 Aug 2008) $
 * Description: convenience string manipulation functions for C clients
 * Copyright (c) 2000-2001, Lawrence Livermore National Security, LLC
 * Produced at the Lawrence Livermore National Laboratory.
 * Written by the Components Team <components@llnl.gov>
 * UCRL-CODE-2002-054
 * All rights reserved.
 * 
 * This file is part of Babel. For more information, see
 * http://www.llnl.gov/CASC/components/. Please read the COPYRIGHT file
 * for Our Notice and the LICENSE file for the GNU Lesser General Public
 * License.
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License (as published by
 * the Free Software Foundation) version 2.1 dated February 1999.
 * 
 * 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 terms and
 * conditions of the GNU Lesser General Public License for more details.
 * 
 * You should have recieved a copy of the GNU Lesser 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
 */

#ifndef included_sidl_String_h
#define included_sidl_String_h

#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif
  
  struct sidl_BaseInterface__object;
  
  /**
   * Allocate a string of the specified size with an additional location for
   * the string null character.  Strings allocated using this method may be
   * freed using <code>sidl_String_free</code> or the standard <code>free</code>
   * library call.
   */
  char* sidl_String_alloc(size_t size);
  
  /**
   * Allocate a string of the specified size with an additional location for
   * the string null character.  Strings allocated using this method may be
   * freed using <code>sidl_String_free</code> or the standard <code>free</code>
   * library call.
   *
   * Throws an exception if malloc fails.
   */
  char* sidl_String_alloc_ex(size_t size, struct sidl_BaseInterface__object** _ex);
  
  
  /**
   * Free the memory associated with the specified string.  Nothing is done if
   * the string pointer is null.
   */
  void sidl_String_free(char* s);
  
  /**
   * Return the length of the string.  If the string is null, then its length
   * is zero.  Note the string length does not include the terminating null
   * character.
   */
  size_t sidl_String_strlen(const char* s);
  
  /**
   * Copy the string <code>s2</code> into <code>s1</code> and include the
   * terminating null character.  Note that this routine does not check whether
   * there is sufficient space in the destination string.
   */
  void sidl_String_strcpy(char* s1, const char* s2);
  
  /**
   * Duplicate the string.  If the argument is null, then the return value is
   * null.  This new string should be deallocated by a call to the string free
   * function <code>sidl_String_free</code>.
   */
  char* sidl_String_strdup(const char* s);
  
  /**
   * Duplicate the string.  If the argument is null, then the return value is
   * null.  This new string should be deallocated by a call to the string free
   * function <code>sidl_String_free</code>.
   *
   * Throws an exception if malloc fails.
   */
  char* sidl_String_strdup_ex(const char* s, struct sidl_BaseInterface__object** _ex);
  
  /**
   * Duplicate at most the first n characters of the string, if s is longer than
   * n, only n characters are copied and a terminal NUL is added.
   * This new string should be deallocated by a call to the string free
   * function <code>sidl_String_free</code>.
   */
  char* sidl_String_strndup(const char* s, size_t n);
  
  /**
   * Duplicate at most the first n characters of the string, if s is longer than
   * n, only n characters are copied and a terminal NUL is added.
   * This new string should be deallocated by a call to the string free
   * function <code>sidl_String_free</code>.
   *
   * Throws an exception if malloc fails.
   */
  char* sidl_String_strndup_ex(const char* s, size_t n, struct sidl_BaseInterface__object** _ex);
  

/**
 * Return whether the two strings are equal.  Either or both of the two
 * argument strings may be null.
 */
int sidl_String_equals(const char* s1, const char* s2);

/**
 * Return whether the first string ends with the second string.  If either
 * of the two strings is null, then return false.
 */
int sidl_String_endsWith(const char* s, const char* end);

/**
 * Return whether the first string starts with the second string.  If either
 * of the two strings is null, then return false.
 */
int sidl_String_startsWith(const char* s, const char* start);

/**
 * Return the substring starting at the specified index and continuing to
 * the end of the string.  If the index is past the end of the string or
 * if the first argument is null, then null is returned.  The return string
 * should be freed by a call to <code>sidl_String_free</code>.
 */
char* sidl_String_substring(const char* s, const size_t index);

/**
 * Concatenate the two strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 */
char* sidl_String_concat2(const char* s1,
                          const char* s2);

/**
 * Concatenate the two strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 *
 * Throws an exception if malloc fails.
 */
char* sidl_String_concat2_ex(const char* s1,
			     const char* s2, struct sidl_BaseInterface__object* *_ex);

/**
 * Concatenate the three strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 */
char* sidl_String_concat3(const char* s1,
                          const char* s2,
                          const char* s3);

/**
 * Concatenate the three strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 *
 * Throws an exception if malloc fails.
 */
char* sidl_String_concat3_ex(const char* s1,
			     const char* s2,
			     const char* s3, struct sidl_BaseInterface__object* *_ex);

/**
 * Concatenate the four strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 */
char* sidl_String_concat4(const char* s1,
                          const char* s2,
                          const char* s3,
                          const char* s4);

/**
 * Concatenate the four strings and return the resulting string.  Null string
 * arguments are ignored.  The return string should be freed by calling routine
 * <code>sidl_String_free</code>.
 *
 * Throws an exception if malloc fails.
 */
char* sidl_String_concat4_ex(const char* s1,
			     const char* s2,
			     const char* s3,
			     const char* s4, struct sidl_BaseInterface__object* *_ex);
  
/**
 * Replace instances of oldchar with newchar in the provided string.  Null
 * string arguments are ignored.
 */
void sidl_String_replace(char* s, char oldchar, char newchar);

#ifdef __cplusplus
}
#endif
#endif