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.
32 lines
611 B
32 lines
611 B
#include <getopt.h>
|
|
#include <locale.h>
|
|
#include <libintl.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <glib-2.0/glib.h>
|
|
#include "ubl-strings.h"
|
|
|
|
#define LocaleName "ubl-settings-repo-back"
|
|
|
|
|
|
#define _(String) gettext(String)
|
|
|
|
typedef struct {
|
|
char *target;
|
|
char *package_add;
|
|
char *package_remove;
|
|
char *rename;
|
|
int create;
|
|
|
|
} repo_operation;
|
|
|
|
typedef struct {
|
|
struct dict_simple *first;
|
|
struct dict_simple *next;
|
|
void *data;
|
|
} dict_simple;
|
|
|
|
char *yon_string_append(char *source, char *append);
|
|
char *yon_string_copy(char *string); |