Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
list_sources.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
3# for details. All rights reserved. Use of this source code is governed by a
4# BSD-style license that can be found in the LICENSE file.
5
6import os
7import sys
8
9def main(args):
10 for file in sorted(os.listdir(args[0])):
11 if file.endswith('.cpp') or file.endswith('.h'):
12 print(file)
13
14
15if __name__ == '__main__':
16 main(sys.argv[1:])
void print(void *str)
Definition bridge.cpp:126
Definition main.py:1