~ubuntu-branches/ubuntu/wily/steam/wily

« back to all changes in this revision

Viewing changes to sources/wiki/stringutils.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2013-10-29 19:51:18 UTC
  • mfrom: (1.1.4) (0.1.4 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029195118-b9bxciz5hwx5z459
Tags: 1:1.0.0.39-2ubuntu1
Add an epoch to the version number as there was an unrelated steam package
in the archive with a higher version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * stringutils.h
3
 
 *
4
 
 * functions to manipulate cstrings
5
 
 */
6
 
 
7
 
#ifndef STRINGUTILS_H
8
 
#define STRINGUTILS_H
9
 
 
10
 
 
11
 
#include <string.h>
12
 
#include <stdlib.h>
13
 
#include "boolean.h"
14
 
 
15
 
char *strip_surrounding_chars(char *string, int num_chars);
16
 
char *new_cstring(int len);
17
 
char *duplicate_cstring(char *string);
18
 
boolean strings_equal(char *s1, char *s2);
19
 
 
20
 
 
21
 
#endif