mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
33 lines
761 B
C
33 lines
761 B
C
|
/* GSecret - GLib wrapper for Secret Service
|
||
|
*
|
||
|
* Copyright 2011 Collabora Ltd.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Lesser General Public License as published
|
||
|
* by the Free Software Foundation; either version 2 of the licence or (at
|
||
|
* your option) any later version.
|
||
|
*
|
||
|
* See the included COPYING file for more information.
|
||
|
*/
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
#include "gsecret-private.h"
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
gchar *
|
||
|
_gsecret_util_parent_path (const gchar *path)
|
||
|
{
|
||
|
const gchar *pos;
|
||
|
|
||
|
g_return_val_if_fail (path != NULL, NULL);
|
||
|
|
||
|
pos = strrchr (path, '/');
|
||
|
g_return_val_if_fail (pos != NULL, NULL);
|
||
|
g_return_val_if_fail (pos != path, NULL);
|
||
|
|
||
|
pos--;
|
||
|
return g_strndup (path, pos - path);
|
||
|
}
|