ObjFW  Diff

Differences From Artifact [86f17a9e49]:

To Artifact [2c3f1dcc50]:


163
164
165
166
167
168
169


170
171
172
173

174

175
176
177
178
179
180
181
163
164
165
166
167
168
169
170
171
172
173
174
175
176

177
178
179
180
181
182
183
184







+
+




+
-
+








/**
 * \brief Replaces all occurrences of a string in the specified range with
 *	  another string.
 *
 * \param string The string to replace
 * \param replacement The string with which it should be replaced
 * \param options Options modifying search behaviour
 *		  Possible values: None yet
 * \param range The range in which the string should be replaced
 */
- (void)replaceOccurrencesOfString: (OFString*)string
			withString: (OFString*)replacement
			   options: (int)options
			   inRange: (of_range_t)range;
			     range: (of_range_t)range;

/**
 * \brief Deletes all whitespaces at the beginning of the string.
 */
- (void)deleteLeadingWhitespaces;

/**