Last change
on this file since cb1b973 was
5ebff60,
checked in by dequis <dx@…>, at 2015-02-20T22:50:54Z
|
Reindent everything to K&R style with tabs
Used uncrustify, with the configuration file in ./doc/uncrustify.cfg
Commit author set to "Indent <please@…>" so that it's easier to
skip while doing git blame.
|
-
Property mode set to
100644
|
File size:
356 bytes
|
Rev | Line | |
---|
[5ebff60] | 1 | /* |
---|
| 2 | * This is the most simple possible BitlBee plugin. To use, compile it as |
---|
| 3 | * a shared library and place it in the plugin directory: |
---|
[f7f3ada] | 4 | * |
---|
[e506d6c] | 5 | * gcc -o example.so -shared example.c `pkg-config --cflags bitlbee` |
---|
[f7f3ada] | 6 | * cp example.so /usr/local/lib/bitlbee |
---|
| 7 | */ |
---|
| 8 | #include <stdio.h> |
---|
[e506d6c] | 9 | #include <bitlbee.h> |
---|
[f7f3ada] | 10 | |
---|
| 11 | void init_plugin(void) |
---|
| 12 | { |
---|
| 13 | printf("I am a BitlBee plugin!\n"); |
---|
| 14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.