File: test.c

package info (click to toggle)
vile 9.8za-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,644 kB
  • sloc: ansic: 120,894; lex: 14,981; sh: 4,478; perl: 3,511; cpp: 3,180; makefile: 1,425; awk: 271
file content (17 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * $Id: test.c,v 1.2 2004/06/17 23:53:47 tom Exp $
 */
#include "estruct.h"
#include "edef.h"

int
test_vile_plugin_init(void)
{
    static int done = 0;
    if (done)
	mlwarn("test plugin already loaded");
    else
	mlwarn("test plugin loaded");
    done = 1;
    return TRUE;
}