MCPcopy Create free account
hub / github.com/acl-dev/acl / create_map1

Function create_map1

lib_acl/samples/code/main.c:170–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168};
169
170static void create_map1(void)
171{
172 int i, j;
173
174 for (i = 0; i < 255; i++) {
175 if (i > 0) {
176 if (i % 8 == 0)
177 printf(",\r\n");
178 else
179 printf(", ");
180 }
181 for (j = 0; __tab[j].ch; j++) {
182 if (__tab[j].ch == i)
183 break;
184 }
185 if (__tab[j].ch)
186 printf("\"%s\"", __tab[j].txt);
187 else
188 printf("NULL");
189 }
190 printf("\r\n");
191}
192
193int main(void)
194{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…