1#ifndef MUSHLIB_STRING_UTILS_H 
    2#define MUSHLIB_STRING_UTILS_H 
    8int first_pos(
string str, 
char ch);
 
    9int last_pos(
string str, 
char ch);
 
   11boolean equals(
string str1, 
string str2);
 
   13mod_string substring_beg(
string str, 
int begin);
 
   14mod_string substring_mid(
string str, 
int begin, 
int end);
 
   15mod_string substring_end(
string str, 
int end);
 
   17void move_string_by(mod_string str, 
int step);
 
   18mod_string concatenate(
string str1, 
string str2);
 
   20mod_string format(
string template, ...);