PHP 8.2.30
Preview: uldnames.h Size: 10.48 KB
//opt/alt/alt-nodejs22/root/usr/include/unicode/uldnames.h

// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*   Copyright (C) 2010-2016, International Business Machines Corporation and
*   others.  All Rights Reserved.
*******************************************************************************
*/

#ifndef __ULDNAMES_H__
#define __ULDNAMES_H__

/**
 * \file
 * \brief C API: Provides display names of Locale ids and their components.
 */

#include "unicode/utypes.h"
#include "unicode/uscript.h"
#include "unicode/udisplaycontext.h"

#if U_SHOW_CPLUSPLUS_API
#include "unicode/localpointer.h"
#endif   // U_SHOW_CPLUSPLUS_API

/**
 * Enum used in LocaleDisplayNames::createInstance.
 * @stable ICU 4.4
 */
typedef enum {
    /**
     * Use standard names when generating a locale name,
     * e.g. en_GB displays as 'English (United Kingdom)'.
     * @stable ICU 4.4
     */
    ULDN_STANDARD_NAMES = 0,
    /**
     * Use dialect names, when generating a locale name,
     * e.g. en_GB displays as 'British English'.
     * @stable ICU 4.4
     */
    ULDN_DIALECT_NAMES
} UDialectHandling;

/**
 * Opaque C service object type for the locale display names API
 * @stable ICU 4.4
 */
struct ULocaleDisplayNames;

/** 
 * C typedef for struct ULocaleDisplayNames. 
 * @stable ICU 4.4 
 */
typedef struct ULocaleDisplayNames ULocaleDisplayNames;  

#if !UCONFIG_NO_FORMATTING

/**
 * Returns an instance of LocaleDisplayNames that returns names
 * formatted for the provided locale, using the provided
 * dialectHandling.  The usual value for dialectHandling is
 * ULOC_STANDARD_NAMES.
 *
 * @param locale the display locale 
 * @param dialectHandling how to select names for locales 
 * @return a ULocaleDisplayNames instance 
 * @param pErrorCode the status code
 * @stable ICU 4.4
 */
U_CAPI ULocaleDisplayNames * U_EXPORT2
uldn_open(const char * locale,
          UDialectHandling dialectHandling,
          UErrorCode *pErrorCode);

/**
 * Closes a ULocaleDisplayNames instance obtained from uldn_open().
 * @param ldn the ULocaleDisplayNames instance to be closed
 * @stable ICU 4.4
 */
U_CAPI void U_EXPORT2
uldn_close(ULocaleDisplayNames *ldn);

#if U_SHOW_CPLUSPLUS_API

U_NAMESPACE_BEGIN

/**
 * \class LocalULocaleDisplayNamesPointer
 * "Smart pointer" class, closes a ULocaleDisplayNames via uldn_close().
 * For most methods see the LocalPointerBase base class.
 *
 * @see LocalPointerBase
 * @see LocalPointer
 * @stable ICU 4.4
 */
U_DEFINE_LOCAL_OPEN_POINTER(LocalULocaleDisplayNamesPointer, ULocaleDisplayNames, uldn_close);

U_NAMESPACE_END

#endif

/* getters for state */

/**
 * Returns the locale used to determine the display names. This is
 * not necessarily the same locale passed to {@link #uldn_open}.
 * @param ldn the LocaleDisplayNames instance
 * @return the display locale 
 * @stable ICU 4.4
 */
U_CAPI const char * U_EXPORT2
uldn_getLocale(const ULocaleDisplayNames *ldn);

/**
 * Returns the dialect handling used in the display names.
 * @param ldn the LocaleDisplayNames instance
 * @return the dialect handling enum
 * @stable ICU 4.4
 */
U_CAPI UDialectHandling U_EXPORT2
uldn_getDialectHandling(const ULocaleDisplayNames *ldn);

/* names for entire locales */

/**
 * Returns the display name of the provided locale.
 * @param ldn the LocaleDisplayNames instance
 * @param locale the locale whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_localeDisplayName(const ULocaleDisplayNames *ldn,
                       const char *locale,
                       UChar *result,
                       int32_t maxResultSize,
                       UErrorCode *pErrorCode);

/* names for components of a locale */

/**
 * Returns the display name of the provided language code.
 * @param ldn the LocaleDisplayNames instance
 * @param lang the language code whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_languageDisplayName(const ULocaleDisplayNames *ldn,
                         const char *lang,
                         UChar *result,
                         int32_t maxResultSize,
                         UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided script.
 * @param ldn the LocaleDisplayNames instance
 * @param script the script whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_scriptDisplayName(const ULocaleDisplayNames *ldn,
                       const char *script,
                       UChar *result,
                       int32_t maxResultSize,
                       UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided script code.
 * @param ldn the LocaleDisplayNames instance
 * @param scriptCode the script code whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_scriptCodeDisplayName(const ULocaleDisplayNames *ldn,
                           UScriptCode scriptCode,
                           UChar *result,
                           int32_t maxResultSize,
                           UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided region code.
 * @param ldn the LocaleDisplayNames instance
 * @param region the region code whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_regionDisplayName(const ULocaleDisplayNames *ldn,
                       const char *region,
                       UChar *result,
                       int32_t maxResultSize,
                       UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided variant
 * @param ldn the LocaleDisplayNames instance
 * @param variant the variant whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_variantDisplayName(const ULocaleDisplayNames *ldn,
                        const char *variant,
                        UChar *result,
                        int32_t maxResultSize,
                        UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided locale key
 * @param ldn the LocaleDisplayNames instance
 * @param key the locale key whose display name to return
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_keyDisplayName(const ULocaleDisplayNames *ldn,
                    const char *key,
                    UChar *result,
                    int32_t maxResultSize,
                    UErrorCode *pErrorCode);

/**
 * Returns the display name of the provided value (used with the provided key).
 * @param ldn the LocaleDisplayNames instance
 * @param key the locale key
 * @param value the locale key's value
 * @param result receives the display name
 * @param maxResultSize the size of the result buffer
 * @param pErrorCode the status code
 * @return the actual buffer size needed for the display name.  If it's
 * greater than maxResultSize, the returned name will be truncated.
 * @stable ICU 4.4
 */
U_CAPI int32_t U_EXPORT2
uldn_keyValueDisplayName(const ULocaleDisplayNames *ldn,
                         const char *key,
                         const char *value,
                         UChar *result,
                         int32_t maxResultSize,
                         UErrorCode *pErrorCode);

/**
* Returns an instance of LocaleDisplayNames that returns names formatted
* for the provided locale, using the provided UDisplayContext settings.
*
* @param locale The display locale 
* @param contexts List of one or more context settings (e.g. for dialect
*               handling, capitalization, etc.
* @param length Number of items in the contexts list
* @param pErrorCode Pointer to UErrorCode input/output status. If at entry this indicates
*               a failure status, the function will do nothing; otherwise this will be
*               updated with any new status from the function. 
* @return a ULocaleDisplayNames instance 
* @stable ICU 51
*/
U_CAPI ULocaleDisplayNames * U_EXPORT2
uldn_openForContext(const char * locale, UDisplayContext *contexts,
                    int32_t length, UErrorCode *pErrorCode);

/**
* Returns the UDisplayContext value for the specified UDisplayContextType.
* @param ldn the ULocaleDisplayNames instance
* @param type the UDisplayContextType whose value to return
* @param pErrorCode Pointer to UErrorCode input/output status. If at entry this indicates
*               a failure status, the function will do nothing; otherwise this will be
*               updated with any new status from the function. 
* @return the UDisplayContextValue for the specified type.
* @stable ICU 51
*/
U_CAPI UDisplayContext U_EXPORT2
uldn_getContext(const ULocaleDisplayNames *ldn, UDisplayContextType type,
                UErrorCode *pErrorCode);

#endif  /* !UCONFIG_NO_FORMATTING */
#endif  /* __ULDNAMES_H__ */

Directory Contents

Dirs: 0 × Files: 203

Name Size Perms Modified Actions
26.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
27.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.77 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.83 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
107.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.53 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.42 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.78 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
59.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.88 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.67 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.30 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
40.70 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.19 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
87.46 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.22 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
48.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
28.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.74 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.84 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.37 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.37 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.03 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.32 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.93 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
26.86 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
19.55 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.12 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
48.62 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.41 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
111.44 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
21.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.49 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
101.89 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
784 B lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.36 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.07 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
33.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
44.20 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
34.68 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
90.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
26.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
50.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.22 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.56 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
27.18 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.07 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
2.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.32 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
32.04 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
56.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
84.45 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.20 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.02 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.09 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.44 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
14.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.60 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.62 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
57.06 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.13 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.53 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
21.43 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
36.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.40 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.90 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.42 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
65.81 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
42.95 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.85 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
34.81 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.11 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
89.61 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.71 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.43 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
63.96 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.27 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
151.74 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
83.34 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.24 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.58 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.98 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
67.28 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.82 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
12.56 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.54 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
14.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.72 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
62.36 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
15.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.93 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.13 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.94 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.86 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.79 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.41 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
10.97 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.09 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
12.25 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
2.06 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
34.12 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
22.75 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
10.78 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
55.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.31 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
16.69 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
11.30 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
14.59 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
1.34 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
24.25 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.30 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
4.05 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.38 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
70.40 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
182.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.55 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
55.16 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
19.68 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
5.23 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
15.35 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
7.26 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
10.66 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.79 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
71.99 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
9.81 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
16.98 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
141.99 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
5.38 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
36.65 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
28.51 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
39.21 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
63.08 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
9.63 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
18.00 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.31 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
80.00 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
8.19 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
38.58 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
1.89 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
72.16 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
3.15 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
58.10 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
7.87 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
30.83 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
23.35 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
763 B lrw-r--r-- 2025-06-06 11:26:48
Edit Download
45.80 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
13.78 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
17.18 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
25.54 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download
34.48 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
6.33 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
8.21 KB lrw-r--r-- 2025-06-06 11:26:48
Edit Download
20.68 KB lrw-r--r-- 2025-06-06 11:26:49
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).