summaryrefslogtreecommitdiffstats
path: root/git-buildmsg/print-buildmsg.c
blob: c5f4e848e5ca11cd1b491dbb1538126f43047533 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <string.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: %s\n", self, GIT_MESSAGE);
  return 0;
}