File: plt-version.py

package info (click to toggle)
python-libtrace 1.6%2Bgit20161027-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,124 kB
  • ctags: 1,357
  • sloc: ansic: 6,890; python: 3,228; makefile: 70; sh: 49
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

import re

f = open('lib/include/plt.h', 'r')
for line in f:
    match = re.match(r'.*PLTversion\s+\"(.+)\"', line)
    if match:
        print match.group(1)
        exit()