/* * kakumei_pass.h * * Password handling for kakumei. * * Author: Dario Rodriguez dario@softhome.net * This progran is licensed under the terms of the Affero GPL v1+ */ #include "kakumei.h" int pass_new(kakumei *ka, char *user, char *passwd) { #warning TODO return(-1); } int pass_check(kakumei *ka, char *user, char *passwd) { #warning TODO return(-1); }