/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/csharp/arrays/example.c
21 строка
501 B
William S Fulton
Add C# array typemaps provided by Antti Karanta.
19 сен 2008, 00:32
19 сен 2008, 00:32
0991556
Код
Авторство
О чём код?
/* File : example.c */ #include "example.h" /* copy the contents of the first array to the second */ void myArrayCopy( int* sourceArray, int* targetArray, int nitems ) { int i; for ( i = 0; i < nitems; i++ ) { targetArray[ i ] = sourceArray[ i ]; } } /* swap the contents of the two arrays */ void myArraySwap( int* array1, int* array2, int nitems ) { int i, temp; for ( i = 0; i < nitems; i++ ) { temp = array1[ i ]; array1[ i ] = array2[ i ]; array2[ i ] = temp; } }