f4ebe841a5
FossilOrigin-Name: 8a43dd9d05a4cb73210243ddd8df2a26f16c7ef2c4d4e36ab446de1f65d88223
24 lines
292 B
C
24 lines
292 B
C
|
|
#include <string.h>
|
|
|
|
|
|
#include "mod.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
struct mod_ac *(*mods_ac[])() = MODS_AC;
|
|
|
|
|
|
struct mod_ac * cw_get_mod_ac(const char *name)
|
|
{
|
|
int i;
|
|
for (i=0; mods_ac[i];i++){
|
|
|
|
struct mod_ac * m = mods_ac[i]();
|
|
if (strcmp(m->name,name)==0)
|
|
return m;
|
|
}
|
|
return NULL;
|
|
}
|