I want to use URL encoder for my C program. I am wondering if there is any freely available URL encoding function implemented in C (on the web)??? I tried searching it, but couldn't get one :(
views:
155answers:
4
A:
I find the standard for URL's isn't that hard. You can even limit yourself to HTTP URL's in most cases. It's pretty straight-forward to create your own urlencoder.
Stijn Sanders
2009-05-26 14:54:00
A:
If you are doing any serious development in C, you should really look into using the Apache Portable Runtime and APR Utilities libraries from Apache.
D.Shawley
2009-05-26 14:57:08