MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / my_bcopy

Function my_bcopy

lib/getopt.c:188–200  ·  view source on GitHub ↗
(from, to, size)

Source from the content-addressed store, hash-verified

186}
187
188static void
189my_bcopy(from, to, size)
190const char *from;
191char *to;
192int size;
193{
194 int i;
195
196 for (i = 0; i < size; i++)
197 {
198 to[i] = from[i];
199 }
200}
201#endif /* GNU C library. */
202
203/* Handle permutation of arguments. */

Callers 1

exchangeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected