Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 406566b8b2e9bd8df8fee657c6ae3659 > files > 31

bitlbee-devel-3.0.3-6.fc14.x86_64.rpm

/* 
 * This is the most simple possible BitlBee plugin. To use, compile it as 
 * a shared library and place it in the plugin directory: 
 *
 * gcc -o example.so -shared example.c `pkg-config --cflags bitlbee`
 * cp example.so /usr/local/lib/bitlbee
 */
#include <stdio.h>
#include <bitlbee.h>

void init_plugin(void)
{
	printf("I am a BitlBee plugin!\n");
}