mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-21 21:20:08 +01:00
10 lines
220 B
Python
10 lines
220 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
# Copyright © 2019-2020 Salamandar <felix@piedallu.me>
|
||
|
|
# Copyright 2022 Collabora Ltd.
|
||
|
|
# SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
import glob
|
||
|
|
import sys
|
||
|
|
|
||
|
|
print('\n'.join(glob.glob(sys.argv[1] + '/*.[ch]')))
|