全部博文(1493)
发布时间:2013-03-26 09:56:03
1,字符串连接char *strcat(char *dest, const char *src);char *strncat(char *dest, const char *src, size_t n);英文manual并不难,直接上英文:The strcat() function appends the src string to the dest string, over‐writing the terminating null byte ('\0') at the end of dest, an.........【阅读全文】
发布时间:2013-03-26 09:55:51
truct file_operations是一个字符设备把驱动的操作和设备号联系在一起的纽带,是一系列指针的集合,每个被打开的文件都对应于一系列的操作,这就是file_operations,用来执行一系列的系统调用。linux-2.6.22/include/linux/fs.hstruct file_operations { struct module *owne.........【阅读全文】
发布时间:2013-03-26 09:55:47
废话不多说,直接上代码:#include <stdio.h>#include <mysql/mysql.h>#define HOST "192.168.56.2"#define DB "webdevtest"#define USER "webdev"#define PWD "webdev"#define PORT 3306int main(){&nbs.........【阅读全文】