]> git.saurik.com Git - apt.git/blame_incremental - apt-pkg/contrib/strutl.h
Sync
[apt.git] / apt-pkg / contrib / strutl.h
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: strutl.h,v 1.3 1998/07/19 04:22:09 jgg Exp $
4/* ######################################################################
5
6 String Util - These are some usefull string functions
7
8 _strstrip is a function to remove whitespace from the front and end
9 of a string.
10
11 This source is placed in the Public Domain, do with it what you will
12 It was originally written by Jason Gunthorpe <jgg@gpu.srv.ualberta.ca>
13
14 ##################################################################### */
15 /*}}}*/
16// This is a private header
17// Header section: /
18#ifndef STRUTL_H
19#define STRUTL_H
20
21#include <stdlib.h>
22#include <string>
23
24char *_strstrip(char *String);
25char *_strtabexpand(char *String,size_t Len);
26bool ParseQuoteWord(const char *&String,string &Res);
27string QuoteString(string Str,const char *Bad);
28string SizeToStr(double Bytes);
29string TimeToStr(unsigned long Sec);
30string SubstVar(string Str,string Subst,string Contents);
31string Base64Encode(string Str);
32string URItoFileName(string URI);
33
34int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
35inline int stringcmp(const char *A,const char *AEnd,const char *B) {return stringcmp(A,AEnd,B,B+strlen(B));};
36int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
37inline int stringcasecmp(const char *A,const char *AEnd,const char *B) {return stringcasecmp(A,AEnd,B,B+strlen(B));};
38
39#endif