#!/usr/bin/python
# -*- coding: UTF-8 -*-
#加载调用一般c库用到的模块
import ctypes
#加载c库到一个对象
lib = ctypes.cdll.LoadLibrary("/mnt/hgfs/VMsharedDocument/libcc.so")
#通过对象调用c库函数
lib.printhello()
上面python调用的c库如下
#include <stdio.h>
int printhello(){
printf("hello\n");
return 0;
}
网友评论