资 源 简 介
libfxnsms: a C library for Sending SMS through Fetion(用于发短信的C库)
功能
# 使用libfxnsms提供的接口,给指定手机号/飞信号发送短信# 可以选择发送到飞信或直接到手机# UTF-8编码# 简单易用
API(UTF-8编码)
```
/*
当fxn_send返回非0,该变量记录错误信息
*/
char *fxn_error;
/*
mobile: 你的手机号
password: 你的飞信密码
to: 接收者的手机号或飞信号
sms: 要发送的短信内容
tocell: 0表示如飞信在线发送到飞信;1表示强制发送到手机
verbose: 0不输出细节;1输出细节方便调试
*/
int fxn_send(const char *mobile,
const char *password,
const char *to,
const char *sms,
const int tocell,
const int verbose);
```
下载使用
下载地址:http://code.google.com/p/libfxnsms/
**安装:
```
tar xzvf libfxnsms-0.1.tar.gz
cd libfxnsms
sudo make install
卸载:
cd libfxnsms
sudo make clean
```**
**示例代码:
```
//注意:代码需要保存为UTF-8编码
#include "fxn_sms.h"