repo.or.cz
/
TortoiseGit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use MassiveGitTask for index manipulation
[TortoiseGit.git]
/
src
/
Utils
/
base64.h
blob
d66490f2c9e7aa31f7ae8ee76388c3ba167456c2
1
#include <string>
2
3
#ifndef _BASE64_H_
4
#define _BASE64_H_
5
6
std
::
string
base64_encode
(
unsigned char const
* ,
unsigned int
len
);
7
std
::
string
base64_decode
(
std
::
string
const
&
s
);
8
9
#endif