File: dumpabiver.c

package info (click to toggle)
geany-plugins 1.38%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,812 kB
  • sloc: ansic: 113,227; sh: 4,290; makefile: 1,630; python: 947
file content (9 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
#include <geany/geany.h>
#include <geany/plugindata.h>

int main()
{
    printf("GEANY_ABI=geany-abi-%d\nGEANY_API=geany-api-%d\n",
           GEANY_ABI_VERSION, GEANY_API_VERSION);
    return 0;
}