add first.h, first.c

This commit is contained in:
Viktor Szakats 2024-09-09 11:38:50 +02:00
parent f02a68ffb0
commit 2697c0e1e2
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201
2 changed files with 91 additions and 0 deletions

58
tests/server/first.c Normal file
View File

@ -0,0 +1,58 @@
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
* SPDX-License-Identifier: curl
*
***************************************************************************/
#include <stdio.h>
#include "first.h"
int main(int argc, char **argv)
{
main_func_t main_func;
char *main_name;
if(argc < 2) {
fprintf(stderr, "Pass servername as first argument\n");
return 1;
}
main_name = argv[1];
main_func = NULL;
{
size_t tmp;
for(tmp = 0; tmp < (sizeof(s_mains)/sizeof((s_mains)[0])); ++tmp) {
if(strcmp(main_name, s_mains[tmp].name) == 0) {
main_func = s_mains[tmp].ptr;
break;
}
}
}
if(!main_func) {
fprintf(stderr, "Test '%s' not found.\n", main_name);
return 99;
}
--argc;
++argv;
return main_func(argc, argv);
}

33
tests/server/first.h Normal file
View File

@ -0,0 +1,33 @@
#ifndef HEADER_SERVER_FIRST_H
#define HEADER_SERVER_FIRST_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
* SPDX-License-Identifier: curl
*
***************************************************************************/
typedef int (*main_func_t)(int, char **);
struct onemain {
const char *name;
main_func_t ptr;
};
#endif /* HEADER_SERVER_FIRST_H */