You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.0 KiB
61 lines
2.0 KiB
{#
|
|
Copyright (C) 2018 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
#}
|
|
{#
|
|
|
|
Jinja2 is used for templating throughout this file. {% and {{ indicate the
|
|
beginning of a Jinja2 templated section, and {# begins a comment.
|
|
|
|
See http://jinja.pocoo.org/ for more information
|
|
#}
|
|
/* GENERATED SOURCE. DO NOT MODIFY. */
|
|
/* Run external/icu/tools/icu4c_srcgen/generate_ndk.py to regenerate */
|
|
// © 2018 and later: Unicode, Inc. and others.'
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
|
|
{% for header in icu_headers|sort %}
|
|
#include <{{ header }}>
|
|
{% endfor %}
|
|
|
|
/* Disable the macros in urename.h renaming the below C function definitions. */
|
|
{% for func in functions %}
|
|
#undef {{ func.name }}
|
|
{% endfor %}
|
|
|
|
extern "C" {
|
|
{# Generates a wrapper function for each exposed ICU function. #}
|
|
{% for func in functions %}
|
|
{{ func.result_type }} {{ func.name }}{{ suffix }}({{ func.param_str }}) {
|
|
{% if func.is_variadic and func.return_void %}
|
|
va_list args;
|
|
va_start(args, {{ func.last_param }});
|
|
{{ func.callee }}({{ func.arg_str }});
|
|
va_end(args);
|
|
return;
|
|
{% elif func.is_variadic %}
|
|
va_list args;q
|
|
va_start(args, {{ func.last_param }});
|
|
{{ func.result_type }} ret = {{ func.callee }}({{ func.arg_str }});
|
|
va_end(args);
|
|
return ret;
|
|
{% elif func.return_void %}
|
|
U_ICU_ENTRY_POINT_RENAME({{ func.callee }})({{ func.arg_str }});
|
|
{% else %}
|
|
return U_ICU_ENTRY_POINT_RENAME({{ func.callee }})({{ func.arg_str }});
|
|
{% endif %}
|
|
}
|
|
{% endfor %}
|
|
}
|