File: testapp.c

package info (click to toggle)
apr 1.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,132 kB
  • sloc: ansic: 60,108; sh: 3,610; perl: 900; awk: 393; makefile: 366; python: 142
file content (10 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
#include <apr.h>
#include <apr_general.h>

int main(int argc, const char * const * argv, const char * const *env)
{
    apr_app_initialize(&argc, &argv, &env);


    apr_terminate();
}