Is there any HTML url encoding feature freely available on the web? (Implementation in C)

I want to use a URL encoder for my C program. I am wondering if there is a free URL encoding feature implemented in C (on the web) ??? I tried to find it but couldn't get it :(

+1


a source to share


2 answers


I find that the standard for URLs is not that hard. You can even limit yourself to an HTTP URL in most cases. It's pretty straight forward to create your own urlencoder.



0


a source


If you are serious about C development, you should really learn Apache Portable Runtime and APR Utilities from Apache .



0


a source







All Articles