diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:18 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:18 +0000 |
commit | 492f957ad42ce5eee7e26f3edd5789af296b7460 (patch) | |
tree | b24c42bf1e3a65a75560c0160288ad3405947c33 /apt-pkg/contrib/strutl.h | |
parent | 8bb5959b7e2637a818d5c3c9cd38b9a1a0287331 (diff) |
Http method
Author: jgg
Date: 1998-11-04 07:10:49 GMT
Http method
Diffstat (limited to 'apt-pkg/contrib/strutl.h')
-rw-r--r-- | apt-pkg/contrib/strutl.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h index f93184a24..10d835ba3 100644 --- a/apt-pkg/contrib/strutl.h +++ b/apt-pkg/contrib/strutl.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: strutl.h,v 1.9 1998/11/01 05:27:38 jgg Exp $ +// $Id: strutl.h,v 1.10 1998/11/04 07:11:14 jgg Exp $ /* ###################################################################### String Util - These are some usefull string functions @@ -16,9 +16,14 @@ #ifndef STRUTL_H #define STRUTL_H +#ifdef __GNUG__ +#pragma interface "strutl.h" +#endif + #include <stdlib.h> #include <string> #include <vector> +#include <time.h> char *_strstrip(char *String); char *_strtabexpand(char *String,size_t Len); @@ -56,7 +61,7 @@ class URI string Path; unsigned int Port; - inline operator string(); + operator string(); inline operator =(string From) {CopyFrom(From);}; inline bool empty() {return Access.empty();}; |