This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
namespace vtstring { | |
// 文字列を表す可変引数テンプレート | |
template <char... a> struct vtstring; | |
template <char a, char... b> | |
struct vtstring<a, b...> | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <oauth.h> | |
int main(int argc, char **argv) | |
{ | |
char *consumer_key = "*********************"; | |
char *consumer_secret = "******************************************"; | |
char *access_token = "********-*****************************************"; |
NewerOlder