Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A tiny library for decode value of the query string using c with utf8 support and html entities.

License

NotificationsYou must be signed in to change notification settings

BaseMax/DecodeQueryStringC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A tiny library for decode value of the query string using c with utf8 support and html entities.

Using

decodeUrl(destination,source);decodeHtmlEntities(destination,source);

Functions

voiddecodeUrl(char*destination,constchar*source);size_tdecodeHtmlEntities(char*destination,constchar*source);// char *urlDecode(const char *str);// static inline char toUpper(char c);staticintparseEntity(constchar*current,char**to,constchar**from);staticsize_tputUtf8Char(unsigned longvalue,char*buffer);staticconstchar*getNamedEntity(constchar*name);staticintstringCompare(constvoid*key,constvoid*value);

Global Variable

// const char asciiHex[23] = {...};staticconstchar*constNamedEntities[][2]= {...};

Includes

#include<stdio.h>#include<stdlib.h>#include<string.h>#include<ctype.h>#include<errno.h>

Example I/O

Input: %D8%B3%D9%84%D8%A7%D9%85Output: سلامInput: HELLO%2C+%26%231587%3B%26%231604%3B%26%231575%3B%26%231605%3B+%2C+%26%231777%3B%26%231778%3B%26%231779%3BOutput: HELLO, سلام , ۱۲۳

Compile Example

$ git clone https://github.com/BaseMax/DecodeQueryStringC$ cd DecodeQueryStringC/$ cd example/$ gcc main.c ../source/decodequery.c -o main$ ./main

Copyright

Many resources have been used to implement this library. (Eg NamedEntities, ...)

Also, some of the code has been follow from certain libraries.

So, if you use this complete library, keep the author's name.

In addition, parts of the code have also been optimized.If you have any suggestions for improvement or correction, you can submit.

Thank You.

About

A tiny library for decode value of the query string using c with utf8 support and html entities.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp