summaryrefslogtreecommitdiffstats
path: root/git-buildmsg/print-buildmsg.c
blob: 9291b3d1117f3c0cb56cc324d339d594507311cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <string.h>
#include "config.h"
#include "git-buildmsg.h"

int main(int argc, char *argv[])
{
  const char *const lastslash = strrchr(argv[0], '/');
  const char *const self = (lastslash)?(lastslash+1):(argv[0]);
  printf("%s: v%s, %s\n", self, PACKAGE_VERSION, GIT_MESSAGE);
  return 0;
}