mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 21:50:17 +01:00
```bash
readarray -d '' FILES < <(
git ls-files -z \
':(exclude)po' \
':(exclude)shared/c-rbtree' \
':(exclude)shared/c-list' \
':(exclude)shared/c-siphash' \
':(exclude)shared/c-stdaux' \
':(exclude)shared/n-acd' \
':(exclude)shared/n-dhcp4' \
':(exclude)src/systemd/src' \
':(exclude)shared/systemd/src' \
':(exclude)m4' \
':(exclude)COPYING*'
)
sed \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) *[-–] *\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C1pyright#\5 - \7#\9/' \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) *[,] *\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C2pyright#\5, \7#\9/' \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C3pyright#\5#\7/' \
-e 's/^Copyright \(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/C4pyright#\1#\3/' \
-i \
"${FILES[@]}"
echo ">>> untouched Copyright lines"
git grep Copyright "${FILES[@]}"
echo ">>> Copyright lines with unusual extra"
git grep '\<C[0-9]pyright#' "${FILES[@]}" | grep -i reserved
sed \
-e 's/\<C[0-9]pyright#\([^#]*\)#\(.*\)$/Copyright (C) \1 \2/' \
-i \
"${FILES[@]}"
```
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/298
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2010 - 2017 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef __NM_CLIENT_UTILS_H__
|
|
#define __NM_CLIENT_UTILS_H__
|
|
|
|
#include "nm-meta-setting.h"
|
|
#include "nm-active-connection.h"
|
|
#include "nm-device.h"
|
|
#include "nm-libnm-core-intern/nm-libnm-core-utils.h"
|
|
|
|
const NMObject **nmc_objects_sort_by_path (const NMObject *const*objs, gssize len);
|
|
|
|
const char *nmc_string_is_valid (const char *input, const char **allowed, GError **error);
|
|
|
|
gboolean nmc_string_to_uint (const char *str,
|
|
gboolean range_check,
|
|
unsigned long int min,
|
|
unsigned long int max,
|
|
unsigned long int *value);
|
|
gboolean nmc_string_to_bool (const char *str, gboolean *val_bool, GError **error);
|
|
gboolean nmc_string_to_ternary (const char *str, NMTernary *val, GError **error);
|
|
|
|
gboolean matches (const char *cmd, const char *pattern);
|
|
|
|
/* FIXME: don't expose this function on its own, at least not from this file. */
|
|
const char *nmc_bond_validate_mode (const char *mode, GError **error);
|
|
|
|
const char *nm_active_connection_state_reason_to_string (NMActiveConnectionStateReason reason);
|
|
const char *nmc_device_state_to_string (NMDeviceState state);
|
|
const char *nmc_device_reason_to_string (NMDeviceStateReason reason);
|
|
const char *nmc_device_metered_to_string (NMMetered value);
|
|
|
|
NMActiveConnectionState nmc_activation_get_effective_state (NMActiveConnection *active,
|
|
NMDevice *device,
|
|
const char **reason);
|
|
|
|
const char *nmc_wifi_strength_bars (guint8 strength);
|
|
|
|
const char *nmc_password_subst_char (void);
|
|
|
|
#endif /* __NM_CLIENT_UTILS_H__ */
|