Skip to content
Extraits de code Groupes Projets
Vérifiée Valider 7f5c6b6e rédigé par Kubat's avatar Kubat
Parcourir les fichiers

sticker delete command

parent da878072
Branches
Étiquettes
1 requête de fusion!54Resolve "Stickers"
...@@ -1273,7 +1273,15 @@ unknown: ...@@ -1273,7 +1273,15 @@ unknown:
return false; return false;
} }
// bool bool
// command_sticker_delete(struct lkt_state *srv, size_t c, char *argv[LKT_MESSAGE_ARGS_MAX]) command_sticker_delete(struct lkt_state *srv, size_t c, char *argv[LKT_MESSAGE_ARGS_MAX])
// { {
// } if (argv[0] == NULL || argv[1] == NULL) {
fprintf(stderr, " . command_sticker_delete: Invalid argument\n");
return false;
}
(void) c;
int uri = atoi(argv[1]);
return database_sticker_delete_specify(srv->db, argv[0], uri, argv[2]);
}
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter