Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
mastur
/
backwpup
/
vendor
/
aws
/
aws-crt-php
/
//home/puskom/mastur/backwpup/vendor/aws/aws-crt-php/gen_api.php
<?php $source = "php://stdin"; if (isset($argv[1])) { $source = $argv[1]; } $input_lines = file($source); foreach ($input_lines as $line) { // Strip AWS_EXTERN_C_BEGIN/END if (preg_match('/AWS_EXTERN_C/', $line)) { continue; } // Strip macros/includes if (preg_match('/^#/', $line)) { continue; } // Strip visibility attributes $line = str_replace('AWS_CRT_API ', '', $line); echo($line); }