summaryrefslogtreecommitdiffstats
path: root/test cases/common/179 escape and unicode/find.py
blob: 34a3eb835e83166158a5152566ede1a5958d402c (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3

import os
import sys

for fh in os.listdir('.'):
    if os.path.isfile(fh):
        if fh.endswith('.c'):
            sys.stdout.write(fh + '\0')