#!/bin/bash
# Prints the version of speakup

ver=$(grep "#define SPEAKUP_VERSION" src/speakup.h)
ver=${ver%\"*}
ver=${ver#*\"}
echo ${ver}

