Datasets:

Modalities:
Text
Formats:
parquet
Tags:
code
DOI:
Libraries:
Datasets
Dask
License:
Dataset Viewer
Auto-converted to Parquet Duplicate
content
stringlengths
6
1.05M
obf_code
stringlengths
6
1.05M
probability
float64
0
1
obf_dict
stringlengths
0
25.3k
/** * \file * * \brief SAM Temperature Sensor (TSENS) Driver * * Copyright (C) 2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are...
/** * \file * * \brief SAM Temperature Sensor (TSENS) Driver * * Copyright (C) 2015 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are...
0.553354
{'VAR_0': 'WINDOW_MIN_VALUE', 'FUNC_0': '_tsens_set_config', 'CLASS_0': 'system_gclk_chan_config', 'FUNC_1': 'system_gclk_chan_get_config_defaults', 'VAR_1': 'clock_source', 'VAR_2': 'TSENS_GCLK_ID', 'VAR_3': 'TSENS', 'VAR_4': 'CTRLA', 'VAR_5': 'reg', 'VAR_6': 'TSENS_CTRLA_RUNSTDBY_Pos', 'VAR_7': 'window', 'VAR_8': 'wi...
// // Created by Dado on 01/01/2018. // #pragma once void mainLoop( const CLIParamMap& params, std::unique_ptr<RunLoopBackEndBase>&& _be );
// // Created by Dado on 01/01/2018. // #pragma once void FUNC_0( const CLASS_0& VAR_0, CLASS_1::VAR_1<VAR_2>&& VAR_3 );
0.719202
{'FUNC_0': 'mainLoop', 'CLASS_0': 'CLIParamMap', 'VAR_0': 'params', 'CLASS_1': 'std', 'VAR_1': 'unique_ptr', 'VAR_2': 'RunLoopBackEndBase', 'VAR_3': '_be'}
#include "uart.h" int main(int argc, char **argv) { int fd; int baud; char dev_name[128]; printf("Serial Test Start... (%s)\n", __DATE__); strcpy(dev_name, "/dev/ttyACM0"); baud = 115200; fd = open_serial(dev_name, baud, 10, 32); if(fd < 0) return -2; gsm_msg_send(fd, "010298071...
#include "IMPORT_0" int FUNC_0(int VAR_0, char **VAR_1) { int VAR_2; int baud; char VAR_3[128]; printf("Serial Test Start... (%s)\n", VAR_4); strcpy(VAR_3, "/dev/ttyACM0"); baud = 115200; VAR_2 = FUNC_1(VAR_3, baud, 10, 32); if(VAR_2 < 0) return -2; FUNC_2(VAR_2, "01029807183", ...
0.717216
{'IMPORT_0': 'uart.h', 'FUNC_0': 'main', 'VAR_0': 'argc', 'VAR_1': 'argv', 'VAR_2': 'fd', 'VAR_3': 'dev_name', 'VAR_4': '__DATE__', 'FUNC_1': 'open_serial', 'FUNC_2': 'gsm_msg_send', 'FUNC_3': 'close_serial'}
#include <stdio.h> int main () { int counter; int a = -1; printf("--- Contador Regressivo ---\n"); printf("Em que numero pretende começar? "); scanf("%i", &counter); while (a < counter) { printf("%i\n", counter); counter--; } }
#include <stdio.h> int main () { int counter; int a = -1; printf("--- Contador Regressivo ---\n"); printf("Em que numero pretende começar? "); scanf("%i", &counter); while (a < counter) { printf("%i\n", counter); counter--; } }
0.201941
{}
#include<stdio.h> main() { int a[3][3],b[3][3],c[3][3],i,j,k,sum; printf("Enter 9 number for first matrix\n"); for(i=0;i<=2;i++) { for(j=0;j<=2;j++) scanf("%d",&a[i][j]); } printf("Enter 9 number for second matrix\n"); for(i=0;i<=2;i++) { for(j=...
#include<stdio.h> FUNC_0() { int VAR_0[3][3],b[3][3],VAR_1[3][3],i,j,k,VAR_2; printf("Enter 9 number for first matrix\n"); for(i=0;i<=2;i++) { for(j=0;j<=2;j++) scanf("%d",&VAR_0[i][j]); } printf("Enter 9 number for second matrix\n"); for(i=0;i<=2;i++) {...
0.506353
{'FUNC_0': 'main', 'VAR_0': 'a', 'VAR_1': 'c', 'VAR_2': 'sum'}
// // match.c // machodiff // // Created by <NAME> on 3/19/14. // Copyright (c) 2014 <NAME>. All rights reserved. // #ifndef machodiff_match_c #define machodiff_match_c #include "match.h" struct loader_match_tree * SDMBuildMatchTree(CoreRange buffer1, CoreRange buffer2) { struct loader_match_tree *root = calloc...
// // match.c // machodiff // // Created by <NAME> on 3/19/14. // Copyright (c) 2014 <NAME>. All rights reserved. // #ifndef machodiff_match_c #define machodiff_match_c #include "IMPORT_0" struct CLASS_0 * SDMBuildMatchTree(CLASS_1 VAR_0, CLASS_1 buffer2) { struct CLASS_0 *VAR_1 = FUNC_0(1, sizeof(struct CLASS_...
0.442198
{'IMPORT_0': 'match.h', 'CLASS_0': 'loader_match_tree', 'CLASS_1': 'CoreRange', 'VAR_0': 'buffer1', 'VAR_1': 'root', 'FUNC_0': 'calloc', 'VAR_2': 'parent', 'VAR_3': 'current_node', 'VAR_4': 'counter', 'VAR_5': 'length', 'VAR_6': 'compare_length', 'VAR_7': 'offset1', 'FUNC_1': 'Ptr', 'VAR_8': 'offset2', 'FUNC_2': 'memcm...
#ifndef _PPS_H_ #define _PPS_H_ /* ************************************************************************** */ /* Notes on using the PPS (Peripheral Pin Select) The PIC18 K42 family microcontrollers has a Peripheral Pin Select module that allows the remapping of digital I/O pins. */ /* ******************...
#ifndef _PPS_H_ #define _PPS_H_ /* ************************************************************************** */ /* Notes on using the PPS (Peripheral Pin Select) The PIC18 K42 family microcontrollers has a Peripheral Pin Select module that allows the remapping of digital I/O pins. */ /* ******************...
0.395734
{'FUNC_0': 'pps_unlock', 'VAR_0': 'pin', 'VAR_1': 'PPS_PORT_B', 'VAR_2': 'PPS_PORT_C', 'VAR_3': 'PPS_PORT_E', 'VAR_4': 'PPS_PIN_2', 'VAR_5': 'PPS_PIN_6', 'VAR_6': 'PPS_PIN_7', 'FUNC_1': 'pps_in_INTERRUPT1', 'FUNC_2': 'pps_in_INTERRUPT2', 'FUNC_3': 'pps_in_TIMER1_GATE', 'FUNC_4': 'pps_in_CCP2', 'FUNC_5': 'pps_in_CCP3', ...
/* * (C) Copyright 2000-2004 * <NAME>, DENX Software Engineering, <EMAIL>. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Softwa...
/* * (C) Copyright 2000-2004 * <NAME>, DENX Software Engineering, <EMAIL>. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Softwa...
0.890367
{'VAR_0': '_PART_H', 'IMPORT_0': 'ide.h', 'CLASS_0': 'block_dev_desc', 'VAR_1': 'if_type', 'VAR_2': 'dev', 'VAR_3': 'part_type', 'VAR_4': 'target', 'VAR_5': 'type', 'VAR_6': 'CONFIG_LBA48', 'VAR_7': 'lba48', 'CLASS_1': 'lbaint_t', 'VAR_8': 'lba', 'VAR_9': 'blksz', 'VAR_10': 'vendor', 'VAR_11': 'product', 'VAR_12': 'rev...
#include <stdio.h> long n; void nhap() { long dem=0,i=1,j; scanf("%d",&n); while ((dem+i*5)<n) { dem+=i*5; i*=2; } j=1; while (i+dem<n) { dem+=i; j++; } if (j==1) printf("Sheldon"); if (j==2) printf(...
#include <stdio.h> long n; void FUNC_0() { long dem=0,VAR_0=1,VAR_1; scanf("%d",&n); while ((dem+VAR_0*5)<n) { dem+=VAR_0*5; VAR_0*=2; } VAR_1=1; while (VAR_0+dem<n) { dem+=VAR_0; VAR_1++; } if (VAR_1==1) ...
0.162476
{'FUNC_0': 'nhap', 'VAR_0': 'i', 'VAR_1': 'j', 'FUNC_1': 'main'}
/* * This file is part of the Simutrans-Extended project under the Artistic License. * (see LICENSE.txt) */ #ifndef GUI_FACTORYLIST_STATS_T_H #define GUI_FACTORYLIST_STATS_T_H #include "../tpl/vector_tpl.h" #include "components/gui_component.h" class fabrik_t; namespace factorylist { enum sort_mode_t { by_n...
/* * This file is part of the Simutrans-Extended project under the Artistic License. * (see LICENSE.txt) */ #ifndef GUI_FACTORYLIST_STATS_T_H #define GUI_FACTORYLIST_STATS_T_H #include "IMPORT_0" #include "components/gui_component.h" CLASS_0 fabrik_t; namespace factorylist { enum CLASS_1 { VAR_1 = 0, by_a...
0.428189
{'IMPORT_0': '../tpl/vector_tpl.h', 'CLASS_0': 'class', 'CLASS_1': 'sort_mode_t', 'VAR_0': 'sort_mode_t', 'VAR_1': 'by_name', 'VAR_2': 'by_maxprod', 'VAR_3': 'by_status', 'VAR_4': 'by_power', 'VAR_5': 'by_operation_rate', 'VAR_6': 'by_region', 'VAR_7': 'SORT_MODES', 'VAR_8': 'by_input', 'VAR_9': 'factorylist_stats_t', ...
/************************************************************************** * National Semiconductor COP410 Emulator * * * * Copyright (C) 2006 MAME Team * ***************...
/************************************************************************** * National Semiconductor COP410 Emulator * * * * Copyright (C) 2006 MAME Team * ***************...
0.306933
{'VAR_0': 'A', 'VAR_1': 'Q', 'VAR_2': 'SA', 'VAR_3': 'SIO', 'VAR_4': 'skipLBI', 'FUNC_0': 'WRITE_M', 'FUNC_1': 'IN_L', 'FUNC_2': 'OUT_D', 'FUNC_3': 'OUT_SK', 'VAR_5': 'PUSH', 'FUNC_4': 'PUSH', 'VAR_6': 'addr', 'CLASS_0': 'INLINE', 'FUNC_5': 'illegal', 'FUNC_6': 'WRITE_SK', 'FUNC_7': 'aisc2', 'FUNC_8': 'aisc3', 'FUNC_9'...
/* * EDAC PCI component * * Author: Dave Jiang <djiang@mvista.com> * * 2007 (c) MontaVista Software, Inc. This file is licensed under * the terms of the GNU General Public License version 2. This program * is licensed "as is" without any warranty of any kind, whether express * or implied. * */ #include <asm/p...
/* * EDAC PCI component * * Author: Dave Jiang <djiang@mvista.com> * * 2007 (c) MontaVista Software, Inc. This file is licensed under * the terms of the GNU General Public License version 2. This program * is licensed "as is" without any warranty of any kind, whether express * or implied. * */ #include <IMPOR...
0.845143
{'IMPORT_0': 'asm/page.h', 'IMPORT_1': 'linux/uaccess.h', 'IMPORT_2': 'linux/ctype.h', 'IMPORT_3': 'linux/highmem.h', 'IMPORT_4': 'linux/init.h', 'IMPORT_5': 'linux/module.h', 'IMPORT_6': 'linux/slab.h', 'IMPORT_7': 'linux/smp.h', 'IMPORT_8': 'linux/spinlock.h', 'IMPORT_9': 'linux/sysctl.h', 'IMPORT_10': 'edac_pci.h', ...
#include <stdint.h> #include <stdlib.h> #include <kernel/panic.h> #if UINT32_MAX == UINTPTR_MAX #define STACK_CHK_GUARD 0xe2dee396 #else #define STACK_CHK_GUARD 0x595e9fbd94fda766 #endif uintptr_t __stack_chk_guard = STACK_CHK_GUARD; __attribute__((noreturn)) void __stack_chk_fail(void) { #if __is_libc abort(); ...
#include <IMPORT_0> #include <IMPORT_1> #include <IMPORT_2> #if VAR_0 == VAR_1 #define VAR_2 0xe2dee396 #else #define VAR_2 0x595e9fbd94fda766 #endif uintptr_t VAR_3 = VAR_2; __attribute__((VAR_4)) void FUNC_0(void) { #if VAR_5 abort(); #elif __is_libk FUNC_1("Stack smashing detected"); #endif while (1) { } ...
0.83957
{'IMPORT_0': 'stdint.h', 'IMPORT_1': 'stdlib.h', 'IMPORT_2': 'kernel/panic.h', 'VAR_0': 'UINT32_MAX', 'VAR_1': 'UINTPTR_MAX', 'VAR_2': 'STACK_CHK_GUARD', 'VAR_3': '__stack_chk_guard', 'VAR_4': 'noreturn', 'FUNC_0': '__stack_chk_fail', 'VAR_5': '__is_libc', 'FUNC_1': 'panic', 'FUNC_2': '__builtin_unreachable'}
#pragma once #include "oxygine_include.h" #include "Vector2.h" #include "Matrix.h" namespace oxygine { template<class T> class AffineTransformT { public: typedef VectorT2<T> vector2; typedef AffineTransformT<T> affineTransform; typedef MatrixT<T> matrix; AffineTransfor...
#pragma once #include "IMPORT_0" #include "IMPORT_1" #include "IMPORT_2" CLASS_0 VAR_0 { VAR_1<VAR_2 VAR_3> VAR_2 VAR_4 { public: VAR_5 VAR_6<VAR_3> VAR_7; typedef CLASS_2<CLASS_1> ID_1; typedef CLASS_5<CLASS_1> ID_2; FUNC_1() {} VAR_4(ID_0 VAR_9, VAR_3 VAR_10,...
0.870298
{'IMPORT_0': 'oxygine_include.h', 'IMPORT_1': 'Vector2.h', 'IMPORT_2': 'Matrix.h', 'CLASS_0': 'namespace', 'VAR_0': 'oxygine', 'VAR_1': 'template', 'VAR_2': 'class', 'VAR_3': 'T', 'CLASS_1': 'T', 'ID_0': 'T', 'FUNC_0': 'T', 'VAR_4': 'AffineTransformT', 'CLASS_2': 'AffineTransformT', 'FUNC_1': 'AffineTransformT', 'VAR_5...
#pragma once #ifndef WARP_H #define WARP_H #include "tfxparam.h" #include "trop.h" #include "trasterfx.h" //----------------------------------------------------------------------- struct WarpParams { int m_shrink; double m_warperScale; double m_intensity; bool m_sharpen; }; struct LPoint { TPointD s; //...
#pragma once #ifndef WARP_H #define WARP_H #include "tfxparam.h" #include "trop.h" #include "trasterfx.h" //----------------------------------------------------------------------- struct WarpParams { int m_shrink; double m_warperScale; double m_intensity; bool m_sharpen; }; struct LPoint { TPointD s; //...
0.036415
{'CLASS_0': 'Lattice', 'VAR_0': 'Lattice', 'VAR_1': 'rasInPos'}
/* * File: NothingWork.h * Author: Chris * * Created on September 25, 2015, 5:15 PM */ #ifndef NOTHINGWORK_H #define NOTHINGWORK_H #include "PDBBuzzer.h" #include "PDBCommWork.h" // do no work namespace pdb { class NothingWork : public PDBWork { public: NothingWork() {} void execute(PDBBuzzerPtr ca...
/* * File: NothingWork.h * Author: Chris * * Created on September 25, 2015, 5:15 PM */ #ifndef NOTHINGWORK_H #define NOTHINGWORK_H #include "PDBBuzzer.h" #include "PDBCommWork.h" // do no work CLASS_0 VAR_0 { CLASS_1 VAR_1 : public VAR_2 { public: FUNC_0() {} void FUNC_1(PDBBuzzerPtr callerBuzzer) ...
0.481808
{'CLASS_0': 'namespace', 'VAR_0': 'pdb', 'CLASS_1': 'class', 'VAR_1': 'NothingWork', 'FUNC_0': 'NothingWork', 'VAR_2': 'PDBWork', 'FUNC_1': 'execute', 'VAR_3': 'override'}
/* * Add a measurement to the log; the data at data_seg:data/length are * appended to the TCG_PCClientPCREventStruct * * Input parameters: * pcrIndex : which PCR to extend * event_type : type of event; specs 10.4.1 * event_id : (unused) * data : pointer to the data (i.e., string) to be added to th...
/* * Add a measurement to the log; the data at data_seg:data/length are * appended to the TCG_PCClientPCREventStruct * * Input parameters: * pcrIndex : which PCR to extend * event_type : type of event; specs 10.4.1 * event_id : (unused) * data : pointer to the data (i.e., string) to be added to th...
0.762053
{'VAR_0': 'pcrIndex', 'VAR_1': 'event_id', 'VAR_2': 'data_ptr', 'VAR_3': 'length', 'VAR_4': 'rc', 'CLASS_0': 'hleei_short', 'VAR_5': 'hleei', 'CLASS_1': 'hleeo', 'VAR_6': 'hleeo', 'VAR_7': '_pcpes', 'CLASS_2': 'pcpes', 'VAR_8': 'pcpes', 'VAR_9': 'data', 'FUNC_0': 'memset', 'VAR_10': 'eventtype', 'VAR_11': 'eventdatasiz...
/* * Copyright 2014 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
/* * Copyright 2014 MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
0.497799
{'IMPORT_0': 'mongoc-array-private.h', 'IMPORT_1': 'mongoc-client.h', 'CLASS_0': 'BSON_BEGIN_DECLS', 'VAR_0': 'struct', 'VAR_1': '_mongoc_bulk_operation_t', 'VAR_2': 'database', 'VAR_3': 'ordered', 'CLASS_1': 'mongoc_array_t', 'VAR_4': 'commands', 'VAR_5': 'result', 'CLASS_2': 'mongoc_bulk_operation_t', 'CLASS_3': 'BSO...
/* Initializes all required high-level real/virtual serial port HAL drivers: */ void serialport_hal_init(void) { uart7_setup(); }
/* Initializes all required high-level real/virtual serial port HAL drivers: */ void FUNC_0(void) { FUNC_1(); }
0.968822
{'FUNC_0': 'serialport_hal_init', 'FUNC_1': 'uart7_setup'}
/* file: minmax_kernel.h */ /******************************************************************************* * Copyright 2014 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at...
/* file: minmax_kernel.h */ /******************************************************************************* * Copyright 2014 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at...
0.171035
{'IMPORT_0': 'algorithms/normalization/minmax.h', 'IMPORT_1': 'src/threading/threading.h', 'VAR_0': 'algorithms', 'VAR_1': 'template', 'VAR_2': 'algorithmFPType', 'CLASS_0': 'algorithmFPType', 'VAR_3': 'method', 'VAR_4': 'class', 'VAR_5': 'Status', 'VAR_6': 'maximums'}
#include "emu.h" #include "includes/galspnbl.h" PALETTE_INIT( galspnbl ) { int i; /* initialize 555 RGB lookup */ for (i = 0; i < 32768; i++) palette_set_color_rgb(machine, i + 1024, pal5bit(i >> 5), pal5bit(i >> 10), pal5bit(i >> 0)); } /* sprite format (see also Ninja Gaiden): * * word bit ...
#include "emu.h" #include "includes/galspnbl.h" PALETTE_INIT( VAR_0 ) { int i; /* initialize 555 RGB lookup */ for (i = 0; i < 32768; i++) palette_set_color_rgb(machine, i + 1024, pal5bit(i >> 5), pal5bit(i >> 10), pal5bit(i >> 0)); } /* sprite format (see also Ninja Gaiden): * * word bit ...
0.363386
{'VAR_0': 'galspnbl', 'FUNC_0': 'draw_sprites', 'CLASS_0': 'running_machine', 'CLASS_1': 'bitmap_t', 'VAR_1': 'driver_data', 'VAR_2': 'spriteram', 'VAR_3': 'offs', 'VAR_4': 'layout', 'VAR_5': 'spriteram_size', 'VAR_6': 'sx', 'VAR_7': 'color', 'VAR_8': 'flipx', 'VAR_9': 'col', 'VAR_10': 'primary_screen', 'VAR_11': 'gfx'...
#pragma once namespace shared { class TemplatedObjectFactoryWrapper; /* 类名:TemplatedObjectFactory 功能:根据注册类型的信息创建一个TOBJFLG的实例,类型TBase应是TOBJFLG的父类 */ template<typename TBase, typename TOBJFLG> class TemplatedObjectFactory : public nbase::Singleton<TemplatedObjectFactory<typename TBase, typename TOBJFLG>> { priva...
#pragma once namespace VAR_0 { CLASS_0 VAR_2; /* 类名:TemplatedObjectFactory 功能:根据注册类型的信息创建一个TOBJFLG的实例,类型TBase应是TOBJFLG的父类 */ VAR_3<VAR_4 TBase, VAR_4 VAR_5> VAR_1 TemplatedObjectFactory : public VAR_7::VAR_8<VAR_6<VAR_4 TBase, VAR_4 VAR_5>> { private: VAR_9 _ParentType = VAR_7::VAR_8<VAR_6<VAR_4 TBase, VAR_4...
0.742911
{'VAR_0': 'shared', 'CLASS_0': 'class', 'VAR_1': 'class', 'VAR_2': 'TemplatedObjectFactoryWrapper', 'VAR_3': 'template', 'VAR_4': 'typename', 'VAR_5': 'TOBJFLG', 'ID_0': 'TOBJFLG', 'CLASS_1': 'TOBJFLG', 'VAR_6': 'TemplatedObjectFactory', 'FUNC_0': 'TemplatedObjectFactory', 'VAR_7': 'nbase', 'VAR_8': 'Singleton', 'VAR_9...
/** * @brief Used to parse advertising data and scan response data * @param[in] scan_info point to scan information data. * @retval void */ void bt_mesh_scatternet_app_parse_scan_info(T_LE_SCAN_INFO *scan_info) { uint8_t buffer[32]; uint8_t pos = 0; while (pos < scan_info->data_len) { ...
/** * @brief Used to parse advertising data and scan response data * @param[in] scan_info point to scan information data. * @retval void */ void FUNC_0(T_LE_SCAN_INFO *VAR_0) { uint8_t buffer[32]; uint8_t pos = 0; while (pos < VAR_0->data_len) { uint8_t length = VAR_0->data[pos++]; ...
0.594198
{'FUNC_0': 'bt_mesh_scatternet_app_parse_scan_info', 'VAR_0': 'scan_info', 'FUNC_1': 'memcpy', 'FUNC_2': 'APP_PRINT_TRACE2', 'VAR_1': 'GAP_ADTYPE_FLAGS', 'FUNC_3': 'APP_PRINT_INFO1', 'VAR_2': 'GAP_ADTYPE_16BIT_MORE', 'VAR_3': 'GAP_ADTYPE_SERVICES_LIST_16BIT', 'VAR_4': 'i', 'VAR_5': 'GAP_ADTYPE_32BIT_MORE', 'VAR_6': 'GA...
/* simpleide.c: Simple 8-bit IDE interface routines Copyright (c) 2003-2016 <NAME>, <NAME>, <NAME> Copyright (c) 2015 <NAME> Copyright (c) 2016 <NAME> $Id: simpleide.c 817 2016-07-18 11:56:29Z fredm $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU ...
/* simpleide.c: Simple 8-bit IDE interface routines Copyright (c) 2003-2016 <NAME>, <NAME>, <NAME> Copyright (c) 2015 <NAME> Copyright (c) 2016 <NAME> $Id: simpleide.c 817 2016-07-18 11:56:29Z fredm $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU ...
0.10378
{'VAR_0': 'data', 'VAR_1': 'simpleide_active'}
// // RPN_Calc.h // RPN-Calc // // Created by <NAME> on 12/18/19. // Copyright © 2019 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> //! Project version number for RPN_Calc. FOUNDATION_EXPORT double RPN_CalcVersionNumber; //! Project version string for RPN_Calc. FOUNDATION_EXPORT const unsigne...
// // RPN_Calc.h // RPN-Calc // // Created by <NAME> on 12/18/19. // Copyright © 2019 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> //! Project version number for RPN_Calc. CLASS_0 VAR_0 VAR_1; //! Project version string for RPN_Calc. CLASS_0 const VAR_2 char RPN_CalcVersionString[]; // In t...
0.827824
{'CLASS_0': 'FOUNDATION_EXPORT', 'VAR_0': 'double', 'VAR_1': 'RPN_CalcVersionNumber', 'VAR_2': 'unsigned'}
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
161

Collection including ObscuraCoder/ObscuraX