diff options
author | Tom Feist <shabble@metavore.org> | 2011-01-01 17:38:55 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-01-01 17:38:55 +0000 |
commit | fc84e55acd28bb7da2d104c0cd9a7487f261b7b5 (patch) | |
tree | 3609741634da3db93d7889ea30d29054af852e18 /modules/test/test_impl.h | |
parent | Merge branch 'dev' of github.com:shabble/irssi-scripts into dev (diff) | |
download | irssi-scripts-fc84e55acd28bb7da2d104c0cd9a7487f261b7b5.tar.gz irssi-scripts-fc84e55acd28bb7da2d104c0cd9a7487f261b7b5.zip |
module_test: The tiny beginnings of an irssi loadable-module (not script) for
educational and internals poking purposes. Hopefully one day it might grow up
to be a real binary!
See README for details on the code I "borrowed" from ahf. I hope I attributed
it all ok :)
Diffstat (limited to '')
-rw-r--r-- | modules/test/test_impl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/test/test_impl.h b/modules/test/test_impl.h new file mode 100644 index 0000000..bd9b185 --- /dev/null +++ b/modules/test/test_impl.h @@ -0,0 +1,9 @@ +#ifndef _TEST_IMPL_H_ +#define _TEST_IMPL_H_ 1 + + +void print_load_message(void); + + + +#endif /* _TEST_IMPL_H_ */ |