Files @ e63427c2da8a
Branch filter:

Location: libtransport.git/backends/twitter/libtwitcurl/urlencode.h

Steffen Vogel
fix a lot of compiler warnings thrown by newer GCC versions

mostly warnings about:
- comparison differing in signedness
- unused functions and variables
- some casts
#ifndef __URLENCODE_H__
#define __URLENCODE_H__

#include <iostream>
#include <string>

std::string char2hex( char dec );
std::string urlencode( const std::string &c );

#endif // __URLENCODE_H__