/
Dimasick-git
/
RCU
Обзор
Документация
Войти
/
Dimasick-git
/
RCU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Source/MemTesterNX/source/types.h
26 строк
756 B
Dimasick-git
Add Horizon-OC source code and compiled binaries
20 май 2026, 01:44
20 май 2026, 01:44
a63c916
Код
Авторство
О чём код?
/* * Very simple but very effective user-space memory tester. * Originally by Simon Kirby <sim@stormix.com> <sim@neato.org> * Version 2 by Charles Cazabon <charlesc-memtester@pyropus.ca> * Version 3 not publicly released. * Version 4 rewrite: * Copyright (C) 2004-2020 Charles Cazabon <charlesc-memtester@pyropus.ca> * Licensed under the terms of the GNU General Public License version 2 (only). * See the file COPYING for details. * * This file contains typedefs, structure, and union definitions. * */ #include "sizes.h" typedef unsigned long ul; typedef unsigned long long ull; typedef unsigned long volatile ulv; typedef unsigned char volatile u8v; typedef unsigned short volatile u16v; struct test { char *name; int (*fp)(); };