diff options
Diffstat (limited to 'test/scratch.cc')
-rw-r--r-- | test/scratch.cc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/scratch.cc b/test/scratch.cc index dc02e059a..d3ca58a77 100644 --- a/test/scratch.cc +++ b/test/scratch.cc @@ -1,10 +1,20 @@ #include <apt-pkg/tagfile.h> +#include <apt-pkg/strutl.h> #include <signal.h> #include <stdio.h> int main(int argc,char *argv[]) { + URI U(argv[1]); + cout << U.Access << endl; + cout << U.User << endl; + cout << U.Password << endl; + cout << U.Host << endl; + cout << U.Path << endl; + cout << U.Port << endl; + +/* FileFd F(argv[1],FileFd::ReadOnly); pkgTagFile Reader(F); @@ -15,7 +25,7 @@ int main(int argc,char *argv[]) Sect.FindS("Section"); Sect.FindS("Version"); Sect.FindI("Size"); - }; + };*/ return 0; } |