Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > fd0537678ff313685170b3ca76ac41dc > files > 33

bitlbee-devel-3.2.1-0.fc18.i686.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");
}