#include <math.h>
#include <stdio.h>
#include <strings.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <time.h>
#include <communication.h>
Go to the source code of this file.
Functions | |
int | decode (const unsigned char *src, int len, unsigned char *dst, int buf_max) |
デコード More... | |
int | encode (const unsigned char *src, int len, unsigned char *dst, int buf_max) |
エンコード More... | |
int decode | ( | const unsigned char * | src, |
int | len, | ||
unsigned char * | dst, | ||
int | buf_max | ||
) |
デコード
src[in] | デコードする文字列 |
len[in] | デコードする文字列の長さ |
dst[out] | デコード後のデータ |
buf_max[in] | デコード後のデータバッファのサイズ |
Definition at line 86 of file communication.c.
int encode | ( | const unsigned char * | src, |
int | len, | ||
unsigned char * | dst, | ||
int | buf_max | ||
) |
エンコード
Definition at line 42 of file communication.c.