blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 268 | content_id stringlengths 40 40 | detected_licenses listlengths 0 58 | license_type stringclasses 2
values | repo_name stringlengths 5 118 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 816
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 2.31k 677M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 151
values | src_encoding stringclasses 33
values | language stringclasses 1
value | is_vendor bool 2
classes | is_generated bool 2
classes | length_bytes int64 3 10.3M | extension stringclasses 119
values | content stringlengths 3 10.3M | authors listlengths 1 1 | author_id stringlengths 0 228 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bdd283e8e24e6f4e1f5dcbeaae770d90c84a0496 | 3db023edb0af1dcf8a1da83434d219c3a96362ba | /windows_nt_3_5_source_code/NT-782/PRIVATE/WINDOWS/BASE/CLIENT/DEBUGINT.C | 7e1d8517d968dcdd29aaaf60a179f2a80f7d1738 | [] | no_license | xiaoqgao/windows_nt_3_5_source_code | de30e9b95856bc09469d4008d76191f94379c884 | d2894c9125ff1c14028435ed1b21164f6b2b871a | refs/heads/master | 2022-12-23T17:58:33.768209 | 2020-09-28T20:20:18 | 2020-09-28T20:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 67,344 | c | /*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
debugint.c
Abstract:
This module contains the internal debugging functions that are
defined only for DEVL and i386
Author:
Steve Wood (stevewo) 24-Jan-1991
Revision History:
--*/
#include "basedll.h"
#include <st... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
f04d4ee726ab5801de9238a6931509a0161aca7a | f1356391ac01fe96d4752b695b02a03cb3f770d5 | /Codes/Matriz Bidimensional.c | 73f57aaa1c39f049fcfdb24d6fbb8809211d9faa | [] | no_license | tovoando/learningc | fa220e598350071c91f7431feae2c8bc76166603 | bce54773913644e85bcc140015f138bb3e76d48d | refs/heads/master | 2021-04-29T12:15:43.519171 | 2018-02-16T07:34:47 | 2018-02-16T07:34:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 483 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
float notas[3][4];
int linhas, colunas;
for(linhas = 0 ; linhas < 3 ; linhas++)
{
for(colunas = 0 ; colunas < 4 ; colunas++)
{
printf("Digite a %d nota do aluno %d: ", colunas + 1, linhas + 1);
scanf("%f", ¬as[linhas][colunas]);
}
}
f... | [
"ffpsj@ic.ufal.br"
] | ffpsj@ic.ufal.br |
ba3f35cc53e1198bee03cb6af06ee42ab33b1cdc | 08c628d726a9dfb95acd8f98d99629856e6d38e3 | /module6/LetterGuess.c | 54e1b215aaf592a9b0449e64b2062741e8753370 | [] | no_license | micmai/COP2220 | c5118b35bcf54edc8ae30c32282db88d82d3d1da | b19109650af2a48751f9a2a3521c89b2dd3df6b8 | refs/heads/master | 2020-03-12T12:33:40.843268 | 2018-04-30T02:52:16 | 2018-04-30T02:52:16 | 130,621,074 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,367 | c | // Michelle Maidana
// Module 6 Large Program 1
// February 17, 2018
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <ctype.h>
#define MAXGUESSES 5
// this function provides instruction to the user on how to play the game
void LetterGuessRules();
// this function asks, gets, returns the number of games... | [
"38637468+micmai@users.noreply.github.com"
] | 38637468+micmai@users.noreply.github.com |
3f624f6f393e520a094fc7499ac2223ab04232e0 | 3a30cfb29aac91e5c75d4dbcefddfd1f34d5f18c | /c-tests/gcc/pr41317.c | 742068b9ad406669fe02f5a0463625d074bf84b7 | [
"GPL-3.0-only",
"GPL-2.0-only",
"MIT",
"MPL-1.0",
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0",
"LGPL-2.0-only"
] | permissive | vnmakarov/mir | a1725bc9c828e8580df6b7ae94e04175db8abe93 | 928e28fb3acaa50d051a906e76a55cc48a556574 | refs/heads/master | 2023-09-02T11:10:37.434581 | 2023-08-25T19:25:40 | 2023-08-25T19:25:40 | 178,932,492 | 2,005 | 156 | MIT | 2023-08-01T20:29:59 | 2019-04-01T19:24:56 | C | UTF-8 | C | false | false | 256 | c | extern void abort (void);
struct A
{
int i;
};
struct B
{
struct A a;
int j;
};
static void
foo (struct B *p)
{
((struct A *)p)->i = 1;
}
int main()
{
struct A a;
a.i = 0;
foo ((struct B *)&a);
if (a.i != 1)
abort ();
return 0;
}
| [
"vmakarov.gcc@gmail.com"
] | vmakarov.gcc@gmail.com |
9474416e577fa0c3151b400f4a5ad95334a15246 | 4937217a1c0a935c6812e5e48db3ff6fc95a09a9 | /include/map.h | 17f29c25fa38769569be6050ab98082ba1898ead | [] | no_license | winstw/bubbobble | 3852940cfaa212ac3665c35d3122df7714539da1 | dfae198e225d90a3e4f1e75098e46f8cd778dcc2 | refs/heads/master | 2020-03-07T15:03:05.748338 | 2018-05-06T21:24:46 | 2018-05-06T21:24:46 | 127,543,478 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,114 | h | #ifndef __MAP__H_
#define __MAP__H_
#include <stdbool.h>
#define CELL_SIZE 24//24
#define MAP_HEIGHT 30//30
#define MAP_WIDTH 30//30
#define WINDOW_WIDTH MAP_WIDTH*CELL_SIZE
#define WINDOW_HEIGHT MAP_HEIGHT*CELL_SIZE
int get_level(); // Renvoie simplement le niveau courant
int next_level(); // Passe au niveau suiv... | [
"geoffroy.larue@gmail.com"
] | geoffroy.larue@gmail.com |
ea7c27ac9762d39b35c2480776af0a8035f089c2 | 63f3397caec1b57598f26bd1108e35053575d362 | /LinDemo/mcu-sdk-2.0-lin-demo/platform/drivers/aoi/fsl_aoi.c | aa8def85e295c2d78c70da19e834b978614669dc | [] | no_license | ClearDotX/MAPS-KS22F256 | 07552fe1cd0e8c2e7cbdf7cbd721b6f7a3c89119 | 2627cd6581ec236a60e5f559f3348c55ddd95348 | refs/heads/master | 2021-02-06T12:33:43.664859 | 2020-03-03T06:21:39 | 2020-03-03T06:21:39 | 243,913,481 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,372 | c | /*
* Copyright (c) 2015, Freescale Semiconductor, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, this list... | [
"clear.shi@outlook.com"
] | clear.shi@outlook.com |
9ca4e19f7258cbc5bfa9cb8f6ffe5b186e744404 | c9b1eb1a6c41f51a4ea97e44a1f3a1eb8d9d8d9a | /crypto_sign/gemss-blue-128/avx2/conv_gf2nx.c | a48787d1e3f5176369f71da77eaabba98cdd7b13 | [
"CC0-1.0",
"LicenseRef-scancode-public-domain"
] | permissive | mkannwischer/PQClean | 8eedaca660f6d7484853c510e2be58cf32cd2ae9 | b04ced99788b09d9ae8cbecefe7bd259b6ecc932 | refs/heads/master | 2023-03-24T14:29:41.282793 | 2021-03-18T04:48:49 | 2021-03-18T04:48:49 | 330,909,025 | 0 | 0 | null | 2021-01-19T08:17:21 | 2021-01-19T08:14:37 | C | UTF-8 | C | false | false | 1,800 | c | #include "conv_gf2nx.h"
#include "inv_gf2n.h"
#include "mul_gf2n.h"
#include "tools_gf2n.h"
/**
* @brief Convert a polynomial in GF(2^n)[X] in a monic polynomial, in-place.
* @param[in] d The degree of F.
* @param[in,out] F An element of GF(2^n)[X], becomes monic.
* @remark Requires to allocate d+1 e... | [
"matthias@kannwischer.eu"
] | matthias@kannwischer.eu |
d03abd18c2b79adc3c9fd8b9545fef8eeefba3ae | 6cbae77d7fb79c1eb81855a65fb32a3e09b65f6b | /os/asp3_gr_peach_gcc/kernel/cyclic.c | 7690913f6b1bed5960c85b0b44111c9d42f5b295 | [] | no_license | tmori/athrill-sample | 9af2eb470f72bf7d227ffeee6f039b315d0b8513 | af0cf8ddd3f73a62c66016caca377391671305f7 | refs/heads/master | 2021-07-20T10:48:48.284929 | 2020-08-14T10:34:46 | 2020-08-14T10:34:46 | 205,520,777 | 5 | 9 | null | 2020-06-07T22:47:35 | 2019-08-31T08:58:45 | C | UTF-8 | C | false | false | 6,939 | c | /*
* TOPPERS/ASP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Advanced Standard Profile Kernel
*
* Copyright (C) 2000-2003 by Embedded and Real-Time Systems Laboratory
* Toyohashi Univ. of Technology, JAPAN
* Copyright (C) 2005-2015 by Embedded and... | [
"tmori@esm.co.jp"
] | tmori@esm.co.jp |
e34ce093bba292f95760cd631b7d360c5bd7ad5b | ad900fd5f1e6f08876897733d3197bd2b93860cb | /Engine/third_party/FBX SDK/2013.2/include/fbxsdk/fileio/fbxiosettingspath.h | 83f117f730ae6301c0c8936a9e4303b9022d19a9 | [] | no_license | artint-liu/Marimo_3rd | 43b500bbdb26fd5af6cd636e058f96af17edb7a7 | 2c95856259df6b06f55531b5b6742e6297598172 | refs/heads/master | 2020-06-05T10:35:46.307109 | 2018-10-10T16:27:33 | 2018-10-10T16:27:33 | 35,075,225 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 48,134 | h | /****************************************************************************************
Copyright (C) 2012 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accom... | [
"artint.liu@gmail.com"
] | artint.liu@gmail.com |
e001a16831dfbb2aadde0cd8c48d786e1e4a3594 | 479f0af342924dec7a56dd41d464acb77e88c2e3 | /training/DS_theory_test/bs_tree/source/main.c | 9f0c84e4a95165a1bf4daabe452f6cbbcf8db294 | [] | no_license | venkatnallamalli/demo | d2b5e60e1a5d415f2b7147044c92452e937905e2 | a4a477aca702e039505f0ebce348ced89b1b4cda | refs/heads/master | 2022-06-19T13:39:02.468948 | 2022-06-14T05:34:28 | 2022-06-14T05:34:28 | 79,771,937 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 975 | c | #include"header.h"
bs_tree *root = NULL;
int main(void)
{
typedef enum {
insertione = 1,
deletione,
displaye,
exite,
}operation;
operation ch;
int val;
char *buff;
if(NULL == (buff = (char*)malloc(MAX))) {
perror("MALLOC failed");
exit(EXIT_FAILURE);
}
do {
printf("\nChoose:");
printf("\n1.in... | [
"vvnallamalli@gmail.com"
] | vvnallamalli@gmail.com |
73d667db190c14c7ec1af1f5a0fb4492e59732dc | 752e3637390293deead060faf43fa8320613f647 | /Library/Il2cppBuildCache/iOS/il2cppOutput/Il2CppGenericClassTable.c | c9f88c8de51ba1f73aed4950cbdcbc5d7eeadcf5 | [] | no_license | halimekuvel/Augmented-Reality-HW1 | 42666766dd33f78ac9d219d587363c98778bc1cf | 2398c7c1bffe70613357a1af1a3d802342bb0121 | refs/heads/main | 2023-08-29T22:47:21.689481 | 2021-11-12T19:51:05 | 2021-11-12T19:51:05 | 427,444,328 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 470,736 | c | #include "pch-c.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "codegen/il2cpp-codegen-metadata.h"
IL2CPP_EXTERN_C_BEGIN
extern Il2CppGenericClass U3CU3Ec_t7752C6F169A3CA2A98B0D4E4A4F9870975185430_GenericClass;
extern Il2CppGenericClass U3CU3Ec_tB319BA1A08989BD2B2710B20B5E4... | [
"halime.kuvel@gmail.com"
] | halime.kuvel@gmail.com |
b7ad4d3c60cb5daf7b3dd2b3da3822502959b760 | 0cfcc4575ba923a78b1abbadb2a4340dd9b74202 | /Src/PIC12F629/shedule_pic12f629.c | 9d2f882ef554d47acd64113a9d42db3b008c7541 | [] | no_license | zll969722243/PIC | 607807bf3fcd0ffb846ada902a553ba7a55f1e6f | 00d250ea10bb8b8b72e6c1f19cb50c46a627aaad | refs/heads/master | 2023-01-10T10:44:38.874754 | 2020-11-04T09:34:26 | 2020-11-04T09:34:26 | 308,005,975 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 30 | c | #include "shedule_pic12f629.h" | [
"969722243@qq.com"
] | 969722243@qq.com |
fb269d7fbc6fec8c47ed6a56967f76e68244b114 | a34164767806411876847839e8949ec50df9ea60 | /2019_pr_lb2/code/diff.c | d1231701c742e9fda30ec7d4ee2ab73b2ac4ee93 | [] | no_license | shinobu9/Short_laboratory_works | 1ac8dd6a680b9a9b96213980f0595183e5a42f4f | d4d61c975576463869de40e2090bedfaed112535 | refs/heads/master | 2023-06-13T03:04:19.789079 | 2021-07-08T11:06:00 | 2021-07-08T11:06:00 | 383,924,380 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 183 | c | #include "diff.h"
#include "abs_max.h"
#include "abs_min.h"
int diff(int *arr, int count){
int e_max = abs_max(arr, count);
int e_min = abs_min(arr, count);
return e_max-e_min;
}
| [
"kamelis113@gmail.com"
] | kamelis113@gmail.com |
4b60f0dcfbaf4a6f06f3210b0f1000ae37cf3937 | 8886361e436c7598419f444a52ae587bf94b1fbe | /internal-complibs/zlib-ng-2.0.7/zconf.h | 1c03f294f2478608963ea7b57c175fcf14dbda8c | [
"Zlib",
"BSD-3-Clause"
] | permissive | Blosc/c-blosc2 | d4b69bf735e1440ea1d7e147f434b488f975c8d4 | 6bbade9e13bd166ea0189f8c3b6253c9bbe9bb54 | refs/heads/main | 2023-08-31T15:47:35.224132 | 2023-08-31T03:01:37 | 2023-08-31T06:01:40 | 40,355,993 | 358 | 85 | NOASSERTION | 2023-09-12T09:26:36 | 2015-08-07T10:51:35 | C | UTF-8 | C | false | false | 5,396 | h | /* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
#ifndef ZCONF_H
#define ZCONF_H
#if !defined(_WIN32) && defined(__WIN32__)
# define _WIN32
#endif
#ifdef __STDC_VERSION__
... | [
"francesc@blosc.org"
] | francesc@blosc.org |
a3b836da5b7e6d60240413c612ea12ae628956c5 | 3c645ca49323ccd8309ed22f333eb717c0da84d1 | /libnet/ssl.c | 9dc6386aba497d27d0a7c2492a897a2fa2f1ec4f | [] | no_license | gitpan/Net | a33d384291f7a003a8fc45088e915145c6903fcf | 1811c9146c2d9328361c2be3f878e85442bfba0e | refs/heads/master | 2016-09-06T01:25:45.736667 | 2003-04-09T10:18:51 | 2014-10-22T12:08:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,660 | c | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#ifdef WIN32
#include<winsock.h>
#else
#include <netdb.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#include <... | [
"schwern+gitpan@pobox.com"
] | schwern+gitpan@pobox.com |
702426e04a85e1014cb986e310b16775b8534d30 | 01091b1b4b64fe380775af9efbd8574455d6b086 | /0x07-pointers_arrays_strings/holberton.h | 1c03f8ac87f0e308c24f7141e033ddf70bc7e4a7 | [] | no_license | luroto/holbertonschool-low_level_programming | 4e235bc8ab8366ddde0092065f6458780529097b | 5825e7ae947324e2aab5f137efe80db166d1e0ea | refs/heads/master | 2021-06-26T18:35:58.008330 | 2020-10-30T02:21:05 | 2020-10-30T02:21:05 | 169,447,517 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 624 | h | int _isupper(int c);
int _putchar(char);
int _isdigit(int c);
int mul(int a, int b);
void print_numbers(void);
void print_most_numbers(void);
void more_numbers(void);
void print_line(int n);
void print_diagonal(int n);
void print_square(int size);
char *_memset(char *s, char b, unsigned int n);
char *_memcpy(char *dest... | [
"774@holbertonschool.com"
] | 774@holbertonschool.com |
d3f9527692bf56c458ffd924495eacb555241ee3 | 2ccdd23bcc591bdc3725c44693f4be9ddc8e6eb1 | /cmod/portaudio/src/common/pa_dither.h | e1aa95cc54ac45b3a601ea66e9dbe6c13ad8a451 | [] | no_license | wlx10011101/lua-5.3.5 | eaa89d24d042e7f6a2c583b5f01b8b6929552d41 | 8d587ec0a6bb77d00623870fa2d241b258454946 | refs/heads/master | 2023-08-22T07:25:15.755564 | 2021-10-04T16:07:18 | 2021-10-04T16:07:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,513 | h | #ifndef PA_DITHER_H
#define PA_DITHER_H
/*
* $Id$
* Portable Audio I/O Library triangular dither generator
*
* Based on the Open Source API proposed by Ross Bencina
* Copyright (c) 1999-2002 Phil Burk, Ross Bencina
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this softwa... | [
"1464959348@qq.com"
] | 1464959348@qq.com |
c1d40f8581786557cc486089ce845b4b502071f0 | 3573af014d8a49db81ede18cad135b33a20b8e3e | /Game/Game_44.h | 5eee2df882af26044687c8a446b5444a6c2e4669 | [] | no_license | 68kPoker/CodeBase | de0c8504fdbbef3a01cc523dfd6286f357586628 | d8822f2eb24bad3aab25e9a8bc08bc2c29218ce7 | refs/heads/master | 2023-04-27T08:20:59.815083 | 2021-05-29T09:41:01 | 2021-05-29T09:41:01 | 233,803,947 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 893 | h |
/* $Id: Game.h,v 1.1 12/.0/.0 .1:.0:.4 Unknown Exp Locker: Unknown $ */
/*
* Game.h
*/
#include <exec/types.h>
#include "System.h"
#include "IFF.h"
#include "Blit.h"
#include "Board.h"
#define BOARD_WIDTH 20
#define BOARD_HEIGHT 16
enum
{
T_FLOOR,
T_WALL,
T_BOX,
T_KEY,
T_HERO,
T_SKULL,
T_DOOR,
T_CHERRY... | [
"robert.szacki@gmail.com"
] | robert.szacki@gmail.com |
2b2f57833dd1fad5889680e70c3f1f6cb28e9c0d | 8190fec31ef98ba76dc1ff3184484d2f34bd65ae | /src/textbox.c | 173d6776f71cbd490353389d8135dbb3be5ec8fc | [] | no_license | DarkestDuckster/ascii_render | f2e93c6a274cfabc06f33dad080a5890119a86f8 | 94a5e88dd468c6e149edd5018acdc1c8733ab828 | refs/heads/master | 2020-09-21T11:38:58.641899 | 2020-07-20T07:11:24 | 2020-07-20T07:11:24 | 224,777,771 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,720 | c | #include <stdlib.h>
#include <string.h>
#include "textbox.h"
typedef struct _textbox {
Renderable_t render_base;
Vector pos;
Vector size;
char *contained_string;
int string_size;
} Textbox_t;
Textbox
create_textbox(Vector pos, Vector size)
{
// Textbot_t *new_textbox = RENDERABLE_INIT(Textbox... | [
"carlkjaergaard@Carls-MacBook-Pro-2.local"
] | carlkjaergaard@Carls-MacBook-Pro-2.local |
da5471e3064e546f864d4d13aff675cf0c23e18b | cbb8a3fea4967e79b3470cd1e43dc0bba2d62ecb | /src/cmd/cb/cb.c | 0b2458965d54aae9186f44a406c58dd85d85eaaa | [
"LPL-1.02",
"dtoa"
] | permissive | lmumar/plan9port | e0d843cfe3ba4fb92573294970f1595969675f64 | d388eb2b5fb9a047a6689acb62bb60b475f31c0f | refs/heads/master | 2020-04-28T03:49:12.695358 | 2019-03-12T13:56:04 | 2019-03-12T13:56:04 | 174,952,170 | 1 | 0 | NOASSERTION | 2019-03-11T07:59:33 | 2019-03-11T07:59:33 | null | UTF-8 | C | false | false | 18,473 | c | #include <u.h>
#include <libc.h>
#include <bio.h>
#include "cb.h"
#include "cbtype.h"
void
main(int argc, char *argv[])
{
Biobuf stdin, stdout;
while (--argc > 0 && (*++argv)[0] == '-'){
switch ((*argv)[1]){
case 's':
strict = 1;
continue;
case 'j':
join = 1;
continue;
case 'l':
if((*argv)[2]... | [
"devnull@localhost"
] | devnull@localhost |
d9cad57b760cedf592ec1e61a72c84ac91407889 | e1a1e0c761e95540cccc1ab4c6b797cbf7e53314 | /Peripheral/Care_support_system_peripheral.cydsn/Generated_Source/PSoC4/SCB_1.h | 7e3316f642cac44eb93444d5d17b220696425203 | [] | no_license | taku-y-9308/Care-support-system | 85e7aff8dc9af57bbfc4b2d3d87b360e7f0ed7f1 | 62c0482fd80f2b9bab507acea96f77e10ced892e | refs/heads/master | 2023-03-03T04:23:34.101872 | 2021-02-18T07:35:17 | 2021-02-18T07:35:17 | 331,335,123 | 4 | 0 | null | 2021-02-10T10:43:39 | 2021-01-20T14:41:52 | C | UTF-8 | C | false | false | 119,399 | h | /***************************************************************************//**
* \file SCB_1.h
* \version 4.0
*
* \brief
* This file provides constants and parameter values for the SCB Component.
*
* Note:
*
********************************************************************************
* \copyright
* Co... | [
"y.takumi4@gmail.com"
] | y.takumi4@gmail.com |
52025f4a098346a6a04051a72d9b3a7fe9ff8884 | 465f8090cd5b17048e64f76f1fa8a0f05704c820 | /src/agents/random_agent.c | 9fb915bb0e23de81336392d2c81c5656b86e70ec | [
"MIT-0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | h3nnn4n/smart-snako | 910ddb027517ecc003b803cff2eaf2957f93ac60 | fe87cb57a5a556705a19144c5ac3f5538082683c | refs/heads/main | 2023-07-12T10:38:55.911788 | 2021-08-04T12:57:33 | 2021-08-04T12:57:33 | 384,586,752 | 0 | 0 | MIT-0 | 2021-08-05T01:58:56 | 2021-07-10T01:37:55 | C | UTF-8 | C | false | false | 1,652 | c | /*
* Copyright <2021> <Renan S Silva, aka h3nnn4n>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify,... | [
"uber.renan@gmail.com"
] | uber.renan@gmail.com |
a6287053b655dfa872e1b6082c247f9984185dc2 | 776037fb4a91183c821784af9ab117048a326423 | /d/palace/npc/obj/g_spear.c | a1c26e12f82bdc48f911f78036357f6784de6370 | [] | no_license | zhoudaohong007/fengyun2005 | 74d41428339e8e57854e26de27cdcfbbf7ac1e34 | 8b52994bbd8db9de7bcb7f15012261a0f9554977 | refs/heads/main | 2023-06-10T13:17:50.285139 | 2021-06-27T12:46:10 | 2021-06-27T12:46:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 543 | c | #include <weapon.h>
#include <ansi.h>
inherit SPEAR;
void create()
{
set_name(HIY"金戟"NOR, ({ "golden spear","spear" }) );
set_weight(20000);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "把");
set("long", "这是一把金色的长戟,沉甸甸地似乎份量不轻。\n");
set("value", 100);
set("material", "steel");
... | [
"i@oiuv.cn"
] | i@oiuv.cn |
368770e6b85595d1cb343827a858f80172004d88 | 75cab704e86edbc8fd6afa47e61a9bc7b082a870 | /basicC/test11.c | 44125961d53a10c74562e5dfb08858777f1ccbe4 | [] | no_license | jinri/linuxC | 6234cf990cab984a914d3618c1d711ad054354b7 | 9f9614744551ee0dd6bca564e2dc795753fa2435 | refs/heads/master | 2020-12-05T11:13:50.500046 | 2016-09-07T05:58:00 | 2016-09-07T05:58:00 | 66,531,885 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 121 | c | #include<stdio.h>
int main()
{
int i =1;
int j =2 ;
if(i>j)
{
printf("i>j\n");
}else
{
printf("i<=j\n");
}
}
| [
"983321789@qq.com"
] | 983321789@qq.com |
2c27b28e64324f0ca7d94cafc47d7b1fc937814a | ca0d65a2519697f1fab4d0467271e032f72feed5 | /darts-x86/omp2cd-examples/benchmarks/CoMD-master-openmp/performanceTimers.h | 2df1ca598190c77486adfafa18982c1d409d2456 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | jandres742/omp2cd | fca943f38e77ff9d32d066c6713e4556cf30fd54 | 15f64d65c41a1b9238af81fe2627c1b8e12ceca7 | refs/heads/master | 2020-12-24T11:09:41.811053 | 2017-06-28T19:23:40 | 2017-06-28T19:23:40 | 73,186,762 | 6 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,659 | h | /// \file
/// Performance timer functions.
#ifndef __PERFORMANCE_TIMERS_H_
#define __PERFORMANCE_TIMERS_H_
#include <stdio.h>
#include <inttypes.h>
/// Timer handles
enum TimerHandle{
totalTimer,
loopTimer,
timestepTimer,
positionTimer,
velocityTimer,
redistributeTimer,
atomHaloTimer,
... | [
"jandres742@gmail.com"
] | jandres742@gmail.com |
81fac3dae2bbb5c7f0ffe7e94a94579663ba22da | 1f6a0c9552e42934c2c38fbad33ab25d4fa113d4 | /Assignment2Final.c | e6f7334f19cd653fd2d6eda05c169df4cd0f191e | [] | no_license | MarkFongAU/CAB202-A2-Teensy-Sprite-Game | 7c6386d27df07b6aeb19b80ef73fb9d866c378c9 | f06ed2e7d0d389eb736180f3e4612bed54b0baac | refs/heads/master | 2021-07-23T12:15:13.326838 | 2017-11-03T06:42:23 | 2017-11-03T06:42:23 | 108,805,498 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 30,008 | c | //#define __AVR_ATmega32U4__
#include <avr/io.h>
#include <util/delay.h>
#include <stdio.h>
#include <stdlib.h>
#include <avr/interrupt.h>
#include "lcd.h"
#include "graphics.h"
#include "cpu_speed.h"
#include "sprite.h"
#include <stdbool.h>
//GAME DEFINES
#define BYTES_PER_ALIEN 3
#define BYTES_PER_PLAYER 4
#define ... | [
"yeechen.fong@connect.qut.edu.au"
] | yeechen.fong@connect.qut.edu.au |
e6086c801f53e76c7e353e224764a98dc0a77fad | b0c58aa6231043c1b4e146e4d9096d142f0b7335 | /kern/vm/frametable.c | 42365f0172da33ba5f4befb5e8e61af4ced2d967 | [] | no_license | lynetteoh/comp3331-Operating-System-Assignments | a22e446cc69c6568c2d45ff03741255962d96e1a | b50f9b6a6e2a28dfe4bb9d0dc6c90fb764819409 | refs/heads/master | 2020-04-10T05:21:04.853022 | 2019-11-06T13:42:55 | 2019-11-06T13:42:55 | 160,824,816 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,442 | c | #include <types.h>
#include <kern/errno.h>
#include <lib.h>
#include <thread.h>
#include <addrspace.h>
#include <vm.h>
/* Place your frametable data-structures here
* You probably also want to write a frametable initialisation
* function and call it from vm_bootstrap
*/
static struct spinlock stealmem_lock = SPIN... | [
"lynette.oh96@hotmail.com"
] | lynette.oh96@hotmail.com |
9d542933ced633169c71c21103880c6ae75f12e4 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/char/tpm/extr_tpm_tis_core.c_tis_int_handler.c | 4d75d00788ea2b0ecd1754a2e7ed3bf59ff4ca3f | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,193 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
0505cf0660667f40c4121c11b3d89269bcb51b32 | 1235c572f55146987459a9b4ce59a36bf7209396 | /User/main.c | 81526c04ae2247cb27201b08b132acec808c4d3b | [] | no_license | quanhengwen/DSO | 647f1d9f6fe30bb39841683df02c898baba02957 | b5ae99e45b10ed520ec129079a961749b1eb0600 | refs/heads/master | 2023-03-13T06:21:27.897940 | 2021-03-03T02:51:18 | 2021-03-03T02:51:18 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 18,143 | c | /*
*********************************************************************************************************
*
* 模块名称 : 主程序模块。
* 文件名称 : main.c
* 版 本 : V1.0
* 说 明 : FreeRTOS操作系统版本的二代示波器
* 实验目的:
* 1. 学习FreeRTOS操作系统版本的二代示波器实现。
* 实验内容:
* 1. 关于示波器的讲解和代码实现请看本实例配套的... | [
"1597616514@qq.com"
] | 1597616514@qq.com |
38f8161457bc7b76b953439ef30d8a1d274496ea | 75ed61d4288b7036fceb26653d74a4ac4c863038 | /Simulatior/Simulatior/monitorHandler.h | 4f816af9931da1bfc7c3e5b4605eb50efc6c6207 | [] | no_license | Yonatan33/ISA-Project | 16ae12aa670a6ef557140d636fb79a6549f3002c | 48dcc031dfd5c431b209e4ea68119ace866db070 | refs/heads/main | 2023-02-18T00:21:07.056594 | 2021-01-15T12:00:59 | 2021-01-15T12:00:59 | 325,468,541 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 180 | h | #ifndef monitorHandler
#define monitorHandler
#include "GlobalUse.h"
/*Header defining the function dealing with updating the monitor's data*/
void updatePixel();
#endif
| [
"noreply@github.com"
] | Yonatan33.noreply@github.com |
809e63a41c0f46064356928f6502c95f74e08a27 | 7caf50db50b1883ac867df0e3b0422d2ee947426 | /attic/andrews/c/jacobi.c | 2ecd007905750602c2eca6ba1649da628de2eb83 | [] | no_license | GabrieldeFreire/concurrent | 9e3a635b8d6088866f108767bd6bfc28db991aac | 6b9aa8cdb32c7c8b6e1156d293746115843851e4 | refs/heads/master | 2022-02-12T10:10:01.727753 | 2019-08-05T00:34:28 | 2019-08-05T00:34:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,581 | c | /* Jacobi iteration using pthreads
usage on Solaris:
gcc jacobi.c -lpthread -lposix4
a.out gridSize numWorkers numIters
*/
#define _REENTRANT
#include <pthread.h>
#include <semaphore.h>
#include <stdio.h>
#include <sys/times.h>
#include <limits.h>
#define SHARED 1
#define MAXGRID 258 /* maximum grid s... | [
"luciano@ramalho.org"
] | luciano@ramalho.org |
9ecbbe859be73de34439bcdc87b35b2f626f66fe | 18723777ec984c03f1558f4e4d1a494ed37ac9af | /src/util/boardutil.h | f4d7283a1b7824f3d70f918cd67235edcc141fcd | [] | no_license | bingdo/WEBApp_WIZwiki-W7500_Eclipse | c8d0c32991c281e59d0c28e832c3711d9dd4c207 | 2ff5ed47e727f92af649953efa560bb2b2e1841e | refs/heads/master | 2016-08-11T21:07:28.585213 | 2015-10-16T02:18:22 | 2015-10-16T02:18:22 | 36,416,245 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,273 | h | /*
*
@file util.h
@brief
*/
#ifndef __BOARDUTIL_H__
#define __BOARDUTIL_H__
#include <stdint.h>
#include "types.h"
//#define FACTORY_FW
//#define FACTORY_FW_ONCE
//#define FACTORY_FW_FLASH
//#define F_SPI_FLASH
#ifdef F_SPI_FLASH
//#define F_SPI_FLASH_ONLY
#endif
#define _FS_DEBUG_
// ADC
typedef enum
{
A0 =... | [
"jim@wiznet.co.kr"
] | jim@wiznet.co.kr |
a7affdb7390dcd2efc790db999bd297685cc570b | a905047c915a243cf82aa26cb3ab4e4173b74560 | /lab5/read_xpm.c | 1e6fb4cc333cddd9c7714545a65392e212272c15 | [] | no_license | xRuiAlves/FEUP-LCOM-TPs | 569360b6df0747893a7caaa5d75aedcc47c379e6 | 02221348a32806131587a443958ad0e8611ea35f | refs/heads/master | 2021-09-23T14:05:26.266308 | 2018-09-23T19:44:34 | 2018-09-23T19:44:34 | 122,787,883 | 4 | 3 | null | null | null | null | UTF-8 | C | false | false | 1,780 | c | /**
* @author Joao Cardoso (jcard@fe.up.pt) ????
* Added by pfs@fe.up.pt
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "read_xpm.h"
char *read_xpm(char *map[], int *wd, int *ht)
{
int width, height, colors;
char sym[256];
int col;
int i, j;
char *pix, *pixtmp, *tmp, *line;
c... | [
"up201606746@fe.up.pt"
] | up201606746@fe.up.pt |
a3078b0a9b1599901643433ca548c3fe3964fe21 | 5b502d55ccb7475a1094aa48c45cc5de499efd53 | /0x02-functions_nested_loops/4-isalpha.c | 3116d0a25ca604c05da90adf82b90a17878ae740 | [] | no_license | VieetBubbles/holbertonschool-low_level_programming | 04390cea81b4910012a2d9171fdbcb15f52c6a0e | 9e110f8960a9fdb4647ff9821599c6e64ad2acea | refs/heads/master | 2020-04-21T10:48:49.580514 | 2019-08-30T06:51:26 | 2019-08-30T06:51:26 | 148,546,016 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 316 | c | #include "holberton.h"
/**
* _isalpha - function that checks for alphabetic character.
* @c: integer input
*
* Return: 1 if c is a letter or 0 if anything else
*/
int _isalpha(int c)
{
if (c >= 65 && c <= 90)
{
return (1);
}
else if (c >= 97 && c <= 122)
{
return (1);
}
else
{
return (0);
}
}
| [
"537@holbertonschool.com"
] | 537@holbertonschool.com |
2b6ff32f793cb605554114d4d0817e3d6712d85c | e8a8e077098b2d01c0f1dce22ef52efb86c71024 | /src/tpm2-tss-engine.c | e21cd7d469553f5b30c7beadb66a8fa581aaf967 | [
"BSD-3-Clause"
] | permissive | mkim2001/tpm2-tss-engine | 15a3aa4536f3f6fad005037ec17c33aa543fea9a | 2da48e4ceadc91a7198136309a81b8611327bdf3 | refs/heads/master | 2022-03-26T18:33:30.830078 | 2020-01-10T14:28:05 | 2020-01-10T14:58:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,282 | c | /*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | [
"andreas.fuchs@sit.fraunhofer.de"
] | andreas.fuchs@sit.fraunhofer.de |
ac9fb60b205e1bfdcaf55c8cbef46b71281d546c | 51635684d03e47ebad12b8872ff469b83f36aa52 | /external/gcc-12.1.0/gcc/testsuite/g++.dg/cpp0x/using-enum-1.C | bf251babeaefa43f18effecd313204b0efcd6d51 | [
"LGPL-2.1-only",
"FSFAP",
"LGPL-3.0-only",
"GPL-3.0-only",
"GPL-2.0-only",
"GCC-exception-3.1",
"LGPL-2.0-or-later",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C | false | false | 273 | c | // PR c++/60265
// { dg-do compile { target c++11 } }
// [namespace.udecl]/7 shall not name a scoped enumerator.
// (so unscoped enumerator is ok)
namespace A
{
enum E { V };
using E::V;
}
void foo()
{
using A::E::V;
}
using A::E::V;
enum F { U };
using F::U;
| [
"rink@rink.nu"
] | rink@rink.nu |
bc8d723ea46a7716c3f8df9541d1be860e40c33b | 901c2b012091810c6cb63e6afb92c7f3b3150996 | /Classes/Native/mscorlib_System_ExecutionEngineExceptionMethodDeclarations.h | 1b2959e58d775839c5b8a3ed964cebc033bdc516 | [] | no_license | 8BitRain/photoshphereSwift | 83f4fce894b91d07ba95060d4e3b194cfc74b5aa | 57ef01c804757d38bda5258f1d188db05ab1d563 | refs/heads/master | 2021-01-13T00:40:51.272582 | 2015-11-14T06:39:29 | 2015-11-14T06:39:29 | 46,164,639 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 998 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
// System.ExecutionEngineException
struct ExecutionEngineException_t1659;
// System.Runtime.Serialization.SerializationInfo
struct Serializati... | [
"8BitRain@gmail.com"
] | 8BitRain@gmail.com |
adcffa0507be062193c1b3fd2d800780d1c9751d | b6a0932207e60be0a0e3c02fb23807784c5971af | /test.c | dd8a68d83d718044dac25c0184ec32ceca5c10f7 | [] | no_license | al-jshen/misc | 871bdc6716fb7e5acce2fdc5e3f8d420b84c6dc9 | 4aa4de0a30a5be68c06814f565cda86968c64e67 | refs/heads/master | 2023-04-13T20:06:04.183918 | 2023-04-09T07:22:46 | 2023-04-09T07:22:46 | 175,736,372 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 333 | c | #include <stdio.h>
void add(double *a, double *b, double *c, size_t n) {
for (int i = 0; i < n; i++) {
c[i] = a[i] + b[i];
}
}
int main() {
double a[10], b[10], c[10];
for (int i = 0; i < 10; i++) {
a[i] = i;
b[i] = i;
}
add(a, b, c, 11);
for (int i = 0; i < 10; i++) {
printf("%f\n", ... | [
"jshen2014@hotmail.com"
] | jshen2014@hotmail.com |
bca53ddb74abafdd9282ffdf08d84dd71a3c8d2e | e97e4566662c629cfbd4d4576db3b5b482c9337c | /2.3.1-foss-2016a/applications/utilities/postProcessing/userBoundaryScalarReadWrite2Txt/userBoundaryScalarReadWrite2Txt.C | 7056bb028d572ffc4cf8481011cd305dfc98f0a1 | [] | no_license | snow-stone/openfoam | 061d08f7db1aece764ce2ea369fc86d0bb627832 | 131da2611e476ce3b03fe7d33e30d569c6e24d95 | refs/heads/master | 2021-06-18T12:51:17.250578 | 2019-10-14T16:55:41 | 2019-10-14T16:55:41 | 147,496,284 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,850 | c | #include "fvCFD.H"
#include "argList.H"
#include "timeSelector.H"
#include <fstream> // 标准输出,到文件
//using std::ofstream; // 不加这个class ofstream找不到
//
void scalarField_simpleStatistics(const scalarField& s)
{
Info<< "Simple Statistics on field : " << endl;
Info<< "size of field : " << s.size() << endl;
Info<< "min... | [
"haining.luo@doctorant.ec-lyon.fr"
] | haining.luo@doctorant.ec-lyon.fr |
96b0d6e1c9bf0117a8f2e8c065c24d4c4962d841 | ac362bb8969d647cd219430bc71c831d894e531c | /dist/am-utils/libamu/strcasecmp.c | aee4d0ff2fe83725f19e27c4d30677f1ab9213d8 | [
"BSD-2-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | noud/mouse-bsd-4.0.1 | efb3b16fcc872ab227e6bb651cf1e836796a0804 | 4c0a1e08df407a759afac2d6a98507df94f5f814 | refs/heads/master | 2023-02-24T23:42:54.060718 | 2020-08-16T20:10:53 | 2020-08-16T20:10:53 | 334,536,412 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,667 | c | /* $NetBSD: strcasecmp.c,v 1.5 2006/02/05 16:28:57 christos Exp $ */
/*
* Copyright (c) 1997-2005 Erez Zadok
* Copyright (c) 1990 Jan-Simon Pendry
* Copyright (c) 1990 Imperial College of Science, Technology & Medicine
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* ... | [
"mouse@Rodents-Montreal.ORG"
] | mouse@Rodents-Montreal.ORG |
5f6ef394d5e9216a94f23910acf54ec9472c4516 | b722e308a36122ec70adaee1cc52c6b26fa80c70 | /week4/memexample.c | c6ba8ef4cd27ea657b93eb2ae31ec508ceaf7bc1 | [] | no_license | fast420/C | ef00742292f6eaf71392d776b8bfbafc3a9bc320 | 1994cc6723bf87e7e28940665867aeff55c0eb32 | refs/heads/master | 2021-05-28T06:47:19.444928 | 2015-01-15T15:52:53 | 2015-01-15T15:52:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 433 | c | // Yunen He 2014
#include<stdio.h>
#include<stdlib.h>
#define MEMSIZE 10000L
int main()
{
long i,j,sum;
long *data;
data = (long *) malloc(MEMSIZE * sizeof(long));
if (data == 0)
{
printf("unable to malloc\n");
}
return 1;
for ( j = 0; j < 10; j++)
{
for (i = 0; i < MEMSIZE; i++)
{
data[i] = i;
}
... | [
"heyunen@hotmail.com"
] | heyunen@hotmail.com |
2441fa0b83f29043149b4c61fd890f0947d544ad | 7c34a8a96fab860a2b478b395883bd07176df4d6 | /c01/ex04/ft_ultimate_div_mod.c | 2ceee01472f320d9bc03ed03642df590838bfc15 | [] | no_license | gomarag/laPiscine | fa779afc1caf98ce8ac8a312e3c461e20ce0048c | 151f0680bc0b6649375ed9bc11adcf61faad3f02 | refs/heads/master | 2022-10-28T12:42:08.651570 | 2020-06-18T12:29:57 | 2020-06-18T12:29:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 993 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mod.c :+: :+: :+: ... | [
"maraqann@gmail.com"
] | maraqann@gmail.com |
7c75d2850bc42a205d7fac623ca52da258271ea0 | b496acd1e272c93d7c22daba06a1b952f6fdbcfc | /pointers.c | 1762e86450789568ee6cdf25ec59b21a05b266a4 | [] | no_license | pradeep199896/C-Filess | 428165509753685984033c17fe55fed3b17a37bb | 12ce9843d305a25cf88290c9d39288ae76ec1a8d | refs/heads/master | 2023-03-11T14:38:21.698600 | 2021-02-19T10:23:21 | 2021-02-19T10:23:21 | 312,794,560 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 195 | c | //pointers
void main()
{
int i=100;
int *ptr,*k;
ptr=&i;
k=&ptr;
printf("%d\n",ptr);
printf("%d\n",k);
printf("%d\n",i);
printf("%d\n",&i);
printf("%d\n",*ptr);
printf("%d\n",*k);
}
| [
"pradeepkittu98@gmail.com"
] | pradeepkittu98@gmail.com |
5f2cbb299e7d511f3766ffc67edccfd9a344de9f | 7721ea9217e7845302fb5b6a161aa37a3775e3e7 | /str4.c | 65851d0509c2b8bd7d5d0add03b3f9d507393e4b | [] | no_license | nanditagaurr/datastruct | 9d7e6eff16c1dba9903ab3a530b8d74a65f36c32 | 8f8f657278f6cdd4cdb4011e5bb950d1b9485619 | refs/heads/master | 2020-04-27T06:17:14.961629 | 2019-08-11T13:55:25 | 2019-08-11T13:55:25 | 174,095,244 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 259 | c | #include<stdio.h>
void main()
{
char s[100];
int i,c=0;
printf("enter any string:");
gets(s);
for(i=0;s[i]!='\0';i++)
if(s[i]=='a'|| s[i]=='e'||s[i]=='i'||s[i]=='o'||s[i]=='u')
c++;
printf("total no of vowels:%d",c);
}
| [
"nandita.17bcs1188@abes.ac.in"
] | nandita.17bcs1188@abes.ac.in |
043bcead5987e5d0770aa65431888fa4c3062be6 | fb383c3550cdcb1514df17a2e5d87b453240e4a5 | /C/week1/week1_2.c | e884d9f0e67d8f925d56daceb76d823ac880aef1 | [] | no_license | mingxoxo/Algorithm | 5ba84afebe1b0125d43011403610619804c107be | dc352f591c6c8ed84f7dbbeb37a2df4178270605 | refs/heads/master | 2023-07-30T17:38:00.190966 | 2023-07-30T08:51:23 | 2023-07-30T08:51:23 | 205,862,682 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,743 | c | // 자료구조 복습
// 연결이진트리를 활용한 트리 탐색 구현
// 무조건 선위순회 순서로 노트의 정보가 주어짐
#include <stdio.h>
#include <stdlib.h>
typedef struct TREE
{
int data;
struct TREE *left;
struct TREE *right;
}TREE;
TREE *make_new_node(int data)
{
TREE *node = NULL;
node = (TREE *)malloc(sizeof(TREE));
node->data ... | [
"noreply@github.com"
] | mingxoxo.noreply@github.com |
8d6392baee38de77287fc60b85007dd678c52544 | 849aa0fb5fe3d6d899800c7d4de569102f95d225 | /MediaFileData.h | f709f0294b7bbcee8705e2f01e843791f40bb0a6 | [] | no_license | SebastienDuflot/MediaManagement | abdfde51d37f096e1859afe69e659584e67d7569 | 79d0d9c938b95064e933f178aa75f5da716fcae6 | refs/heads/master | 2020-12-01T13:15:28.645322 | 2020-07-26T11:25:39 | 2020-07-26T11:25:39 | 230,636,758 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 694 | h | #pragma once
#include <QString>
#include <QDateTime>
extern qint64 NB_BYTES_FOR_MEDIA_FILES;
struct FileID
{
qint64 nSize = -1;
QString hash_md5;
FileID() = default;
FileID( const QString & p_filePath );
QString toString() const;
bool operator <( const FileID & other ) const
{
i... | [
"sebastien.duflot@gmx.de"
] | sebastien.duflot@gmx.de |
677e74ac1da8ffc45dc35459deb8bb6aa3f2cde7 | f8344b0bb9137f78aa72f5066acb7fbdad19aefd | /includes/optionGrabber.h | 72814ad9493e3a3f3e2e63e1cddb00aa1859f4e5 | [] | no_license | michael-baron/garage | 85e4fae1ad97b442641be6fd997cd8438250ca1b | a28e440a5d590c4c5b8bec7862d6a75e64cf0b5a | refs/heads/master | 2020-03-30T09:41:51.714899 | 2018-10-01T12:59:25 | 2018-10-01T12:59:25 | 151,087,923 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 152 | h | #include <stdio.h>
void getOption(int* selection){
scanf("%d", selection);
}
void getCar(int* selection){
int a;
int b;
scanf("%d", selection);
}
| [
"michael.baron@emenda.eu"
] | michael.baron@emenda.eu |
58093f9069d1ec5b1c2ec4d6494cad4da23141fb | 1b490531d4310b90fd21c61ca77605cbc2b4822e | /Library/Arsenal/Arsenal/Common/memory.c | 9132901e2425a91ea6c793b40faffb0a93ce60a6 | [] | no_license | solidusex/wirelesscontroller | fb6ffc41ab80f9587137650a18310642fefc0685 | 308b84a0ecf0d6687b211bb39b63297d7e6ab6af | refs/heads/master | 2016-09-06T05:11:44.043322 | 2012-03-07T17:35:02 | 2012-03-07T17:35:02 | 41,566,254 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,477 | c | /*
* The Arsenal Library
* Copyright (c) 2009 by Solidus
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and ... | [
"SolidusSnakeEx@gmail.com"
] | SolidusSnakeEx@gmail.com |
3e45671b882707ca327cb9689386d2436788af20 | a62917a65640fd0b585016148a47f821a8c86d07 | /gnl/libft/ft_memchr.c | d986855d037880b18ec35a4f10737690022a5380 | [] | no_license | Severno/school-21 | 5080f6352271389835cd8ed5890f0f68783613dd | f7a8f3706a711f5af47ba261d07640b03a8e7e5a | refs/heads/master | 2020-07-26T07:27:16.729575 | 2019-12-20T12:06:05 | 2019-12-20T12:06:05 | 208,576,859 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,147 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: ... | [
"artembykov@Artems-MacBook-Pro.local"
] | artembykov@Artems-MacBook-Pro.local |
2bd555d522af0eeb92828a93a1e0892e677b220a | f94108317ee8ab395e0f57bdc8a33b00cf5a8bc6 | /tests/files/c_source/float.c | 7498f9d88424c39ff46a8101eb13f1ad72a13eec | [
"MIT"
] | permissive | eerimoq/pbtools | d5840eabfe5bf45403ad90c1484a5f1271aeb300 | d0a8d063dafcf128a60d9e40f823c1a80a53ac90 | refs/heads/master | 2023-06-08T18:11:11.942629 | 2023-06-04T05:44:20 | 2023-06-04T05:44:20 | 203,055,828 | 65 | 9 | MIT | 2023-05-09T18:00:20 | 2019-08-18T20:57:14 | C | UTF-8 | C | false | false | 3,913 | c | /**
* The MIT License (MIT)
*
* Copyright (c) 2019 Erik Moqvist
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
6bfa0ab77d25585ae180892dbc37f53e9a13352e | e5dc99a87c589b163c15e8a636623465c8125000 | /j11/ex12/ft_list_remove_if.c | 22189dde144b1cafd0eddf5fa0e737ca73773070 | [] | no_license | oulhafiane/1337-42-Pool | 6760ad963201ae48afaad3982cf5d3eb0bd81d71 | fe457b9245b1a828f54954c50d8309fac8e5e888 | refs/heads/master | 2022-05-25T09:19:20.852006 | 2022-05-20T13:11:48 | 2022-05-20T13:11:48 | 149,684,134 | 27 | 7 | null | null | null | null | UTF-8 | C | false | false | 1,545 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_list_remove_if.c :+: :+: :+: ... | [
"zoulhafi@e1r9p14.1337.ma"
] | zoulhafi@e1r9p14.1337.ma |
1e24f4da75c5b86b4498867ddddfc1f4ffbbfaca | c4afbfe1885e8d0c7a1c8b928563f7bb8ab6a683 | /openETCS_Releases/v0.3-D3.6.3/KCG_GreenField/C_P003V1_compr_onboard_TM_conve.h | 555acb797c8db0650ed1fbdbe84b2f0c72af6097 | [] | no_license | VladislavLasmann/srcAndBinary | cd48ebaa2f1f7f697ba5df9f38abb9ed50658e10 | 13aa76e545b9596f6dac84fb20480dffae7584d8 | refs/heads/master | 2021-05-08T15:04:05.709079 | 2016-01-22T12:40:10 | 2016-01-22T12:40:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,165 | h | /* $**************** KCG Version 6.4 (build i21) ****************
** Command: kcg64.exe -config D:/Github/modeling/model/Scade/System/OBU_PreIntegrations/openETCS_EVC/KCG_GreenField/config.txt
** Generation date: 2015-11-05T08:54:04
*************************************************************$ */
#ifndef _C_P003V1_com... | [
"bernd.hekele@deutschebahn.com"
] | bernd.hekele@deutschebahn.com |
f996b9b19faf02fc65d63c185404450f3b240034 | 36c416dd07ed23be36f4950aaa14d8f450a347d4 | /libft/ft_printf/ft_handle_char.c | 68e97e12b4683f75f58a458533af41e10a8b7e07 | [] | no_license | maxpetrusenko/FDF_42 | 22c4f7e1449d6a7516e0409a6b9d450cdca65161 | 26ebd78c9ca075c2f73569428568a810d4e8d2a9 | refs/heads/master | 2020-05-30T13:07:01.353330 | 2019-07-09T16:34:41 | 2019-07-09T16:34:41 | 189,751,920 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,790 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_handle_char.c :+: :+: :+: ... | [
"max_p@MacBook-Pro-2.local"
] | max_p@MacBook-Pro-2.local |
e261c4114f9b2402fe016d43898f18b031436155 | f64e8deeeaab13ed940e4359f8d25a03ef941c64 | /xiugai1/src/ll.c | d8f30cca5bfb46855a8242644da805cc9668f04c | [] | no_license | FIRSTLINUX/groupwork | c49a0ae7c9bf4972529e965412b32e170c456cb3 | 8fe2c55d8fae09eaf795fd523f9acc9085768a13 | refs/heads/master | 2020-04-12T03:30:31.353950 | 2018-12-20T06:57:27 | 2018-12-20T06:57:27 | 162,269,106 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,695 | c | /***********************************************
* * Name: custom_demo -q file/directory
* * Copyright: 富士通
* * Author: 徐畅
* * Date: 13/10/18 15:37
* * Description: 列出对象的属性 ************************************************/
#include "ll.h"
int ll_main(int argc,char * name){
if(argc... | [
"76456875@qq.com"
] | 76456875@qq.com |
fc57a0ada89482c0d36c50b57f195367d009fe62 | 579402bf37f1f86f5e819576092d74fe30738d4d | /libft/ft_strlcat.c | d3c4a473041dd796c0d8a3d69c2990b3d1d2e998 | [] | no_license | bouplusbou/42-get_next_line | 91ef88e5118cba748cdbf4a3af71ad11b9dee1ea | 4e5a632621b8ec5ad06c46fcd0ae63e85b8a4b1b | refs/heads/master | 2020-04-07T12:29:12.576386 | 2018-12-04T15:10:04 | 2018-12-04T15:10:04 | 158,369,764 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,189 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlcat.c :+: :+: :+: ... | [
"bboucher@e1r4p17.42.fr"
] | bboucher@e1r4p17.42.fr |
f6461859ab7382f205c29d79b0e032941140cfce | 6956b3a41e37bcfd4aaf0908e9ac4c489ead685f | /src/parser/fill_prop.c | 70159fbd64cee2c59366c6177f5ef7393ec989ee | [] | no_license | Krboo/RealTimeRaytracer | d04d961cd76edfb2a02e710689c70e950913fe2c | 0fb0c3f7666fce20ca882bfd8ca195b0a49033d4 | refs/heads/master | 2021-09-10T08:03:53.091899 | 2018-03-22T14:58:21 | 2018-03-22T14:58:21 | 85,729,917 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,055 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fill_prop.c :+: :+: :+: ... | [
"pmartine@e2r8p18.42.fr"
] | pmartine@e2r8p18.42.fr |
4dc3154992d71111419d89068bcdd796c1923524 | c3bad73d97fb694485a14907625d970caa4a9d5b | /src/config/touch_api_ptc.h | a76e227c6b1e051641d01623824fd10159bdefdd | [] | no_license | alan1998/YAWC_Code | f8193b86ee212aaa79984642d4c47abb057f8acc | d2c2d8009f09db498849dfc57e5260309877722e | refs/heads/master | 2021-01-10T14:22:51.233741 | 2016-01-29T13:04:22 | 2016-01-29T13:04:22 | 49,602,591 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 66,952 | h | /* This source file is part of the ATMEL QTouch Library Release 5.0.6 */
/*****************************************************************************
*
* \file
*
* \brief This file contains the SAMD QTouch Library API for
* Capacitive Touch acquisition using the PTC module.
*
*
* - Userguide: QTouc... | [
"alan_drake@btinternet.com"
] | alan_drake@btinternet.com |
c7e2f2911a56cce29f4597f18b9bb3da4ba526aa | 4049b397d727b92c23b28982e46a0b36e24a3c75 | /Test_Program_about_ARM/RN8213_V1123_3_20180523/testcase/Soc_DISLowPwr_sys/src/SocLowPwr_sys_QC.c | c0120f739617f08aed61d28484706b9010439b89 | [] | no_license | zhanghui01/Testing-SWD-protocol-on-3380-Tester | 3ed2e3434dd30b5e6feecca794e6d2d790a1b7fe | 9900adb08e9626737e90140ba15546275cb61587 | refs/heads/master | 2020-04-17T14:33:50.036680 | 2019-01-20T14:58:13 | 2019-01-20T14:58:13 | 166,661,581 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,232 | c | #include "rn821x.h"
#include "common.h"
#include <stdio.h>
#include <sysctrl.h>
#define SWD_EN
typedef enum
{
I1_CH = 1,
I2_CH = 2,
U_CH = 4,
ALL_CH = 7
}ADC_CH;
#define APB_SPI (1 << 15)
#define APB_I2C (1 << 14)
#define APB_7816 (1 << 13)
#define APB_IR38K (1 << 12)
#define APB_UART3 (1 << ... | [
"33270671+zhanghui01@users.noreply.github.com"
] | 33270671+zhanghui01@users.noreply.github.com |
bdd055249f44b284a590f753fae2b2c20d26dfba | 19ad0e460240fe3336d6fbd6f393adabf67694ac | /framework/base64.h | 53ab649b84ee08c44decbaacd8d9d938784df597 | [] | no_license | ZengHuiAn/cserver | 76c428c7544faa7b24898bffae114ebc6ee4ac13 | b9698c1ce58cb25fc0ded2de0c1dfc3a3884dbe0 | refs/heads/master | 2020-04-15T17:12:44.545690 | 2019-04-22T09:50:00 | 2019-04-22T09:50:00 | 164,865,635 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 175 | h | #ifndef _SGK_BASE64_H_
#define _SGK_BASE64_H_
int base64_encode(const char* input, int length_in, char * ouput);
int base64_decode(const char* input, char * output);
#endif
| [
"18501604724@163.com"
] | 18501604724@163.com |
b3a8f7b8e16f5560e4a0af3824df48806256b5b7 | 7849c41cd1a63e0e397a0ec529c78dab318127d1 | /laby/Code/chemin_lab.c | a9d8e9c70212bb4dd1eca7ae8189e0fa8db91c1a | [] | no_license | JroLuttringer/Parallaby | 19b229a95afdb057ada6d7845f1b317ff7bba1db | 76ccada47b97078e43eb1696c678ff2da416ca67 | refs/heads/master | 2020-08-28T16:51:20.679403 | 2018-06-09T18:33:14 | 2018-06-09T18:33:14 | 217,760,093 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,240 | c | #include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include "graph.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
/* taille du mur (pixels) */
//#define CARRE 2
static int CARRE=1;
/* espace entre les murs */
#define INTER 0
/* nombre de couleurs */
#define NBCOL 250
st... | [
"jrluttringer@etu.unistra.fr"
] | jrluttringer@etu.unistra.fr |
fe821af379e5816e635247528304a063e9a3a93c | 3edb3dda6b7793337603b617fbe5db130a7c6631 | /Lab07.X/mcc_generated_files/epwm2.c | 243ee420f9c3aba8e1436b36114ace7300466e95 | [] | no_license | bryceg44/EENG383 | f7c4b9232c4e8f222c2ed71e8043337e3665322a | 8807110540128f65fe84f9eccbf2513c0f42a4d0 | refs/heads/main | 2022-12-26T14:35:19.469259 | 2020-10-13T18:10:20 | 2020-10-13T18:10:20 | 302,497,399 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,965 | c | /**
EPWM2 Generated Driver File
@Company
Microchip Technology Inc.
@File Name
epwm2.c
@Summary
This is the generated driver implementation file for the EPWM2 driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs
@Description
This source file provides implementations for driver APIs for EPWM2.
... | [
"72319414+jtalbott-bit@users.noreply.github.com"
] | 72319414+jtalbott-bit@users.noreply.github.com |
dfc6c9e2f213bd2de1de435e3fe4e13bec250700 | 1e3afbe12102ab8b4e03d318eb8c82e124e97aba | /cipher/decrypt.c | 58163fc76429c494f93c6670fd2e02efa61b2bc4 | [] | no_license | ali-amaar/cipher | 0c5e0a58aebe06ff928fe62baf3a0399404b2e68 | 3b4f9e3cb8622bdd2622bd6c33d0c5d032bfbc70 | refs/heads/master | 2021-07-17T16:58:19.998699 | 2017-10-24T18:46:36 | 2017-10-24T18:46:36 | 108,157,510 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,290 | c | #include "decrypt.h" // Print header file
#include <ctype.h>
#include <stdio.h>
int characters; //globar variable characters
int key; //global variable key
int KeylessDecryption(int fileSize, unsigned char* charBuffer)
{// start KeylessDecription
int charactercount = 0;
int mode;
int modecount = 0;
int possiblem... | [
"aliamaar63@gmail.com"
] | aliamaar63@gmail.com |
a5ee20487e658ade1348fd277b835c93662e3127 | c8e9f84f8178fcadf94f6559ac4b1a73408229fb | /src/interpreter.h | 1dc86c77489c205c98e5294b78065e6e729643f2 | [] | no_license | arp2600/sod | 26b69b8b3ae83834e34391153dce15da1dbb075f | 04c69ddce7e283bb9bcec4ca9a12ed43e83b25cc | refs/heads/master | 2021-01-20T12:41:07.030319 | 2015-04-30T22:43:36 | 2015-04-30T22:43:36 | 25,782,276 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 464 | h | #ifndef _INTERPRETER_H_
#define _INTERPRETER_H_
void interpret_operation (char *op_name, int perform); // Handling operations
void interpret_number (double number, int perform); // Handling numbers
void interpret_func_definition (char *func_name); // Function definitios
void interpret_func_call (char *func_name, int p... | [
"arp2600909@googlemail.com"
] | arp2600909@googlemail.com |
d50ae79b291716228cb0048035801bf036ea1099 | b56a72d08b2ba8934c49b2509d419b5c15f76aa2 | /basic/major_element.c | d145b9dac69a2ab970f8e68ce1cf32e5ca463721 | [] | no_license | cxsjabc/algorithm | 3c374c11a218a337a2fd879cbc7e2d81e593a313 | 14d85b7ce96a2baca6ef1140e5d0af664ec2b476 | refs/heads/master | 2021-05-23T02:43:43.584664 | 2018-09-09T10:48:08 | 2018-09-09T10:48:08 | 48,870,827 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,075 | c | #include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include "common_local.h"
int find_major_element(int arr[], int cnt, int *found)
{
int *extra_arr;
int extra_cnt;
int i;
int j = 0;
int ret;
if(cnt == 1) {
*found = 1;
return arr[0];
}
if(cnt == 2) {
if(arr[0] == arr[1]) {
*found = 1;
... | [
"511272827@qq.com"
] | 511272827@qq.com |
577ab5d68472a78c0c38fbe86c2c2ce5db779ff2 | 77ef7270751001a3b88d845048f58d99895ad79b | /DarkSUSY_mH_125/mGammaD_0250/cT_300/DarkSusy_mH_125_mGammaD_0250_ctauExp_3_cT_000_LHE_gammaD_Phi.C | 47dd920d464a66f89ad42d6649fe17a6c1c00058 | [] | no_license | cms-tamu/MuJetAnalysis_DarkSusySamples_LHE_8TeV_01 | 5075fa7401fbc023cd65d68e2dcd34fdda9d5708 | 19814c85e87f904448b81e99e94d006a3f682a1b | refs/heads/master | 2020-12-24T16:23:36.831181 | 2015-03-18T14:28:32 | 2015-03-18T14:28:32 | 31,564,003 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,039 | c | {
//=========Macro generated from canvas: cnv/cnv
//========= (Mon Mar 16 13:11:04 2015) by ROOT version5.34/18
TCanvas *cnv = new TCanvas("cnv", "cnv",1320,22,904,928);
gStyle->SetOptFit(1);
gStyle->SetOptStat(0);
gStyle->SetOptTitle(0);
cnv->SetHighLightColor(2);
cnv->Range(-5.7,-0.005042032,4.3,0.... | [
"bmichlin@rice.edu"
] | bmichlin@rice.edu |
e56ec856d27a1a61f59ffdc082165963a9753aad | 16a76ee66d9b2f59c9beee4a4a0e104ce347e32a | /malware_via_email/malware_1069/ia32_pe/by_reko.c | 82dcd49481734ba4b25b44c31c959c2ead45f4a9 | [] | no_license | rfalke/decompiler-subjects | 4cee3263fa9116285b4bc4b6373efd2e4efa925f | 7187fa93b285c32325826eecd0128e907a28809b | refs/heads/master | 2023-08-10T08:24:27.198393 | 2023-07-28T19:44:41 | 2023-07-28T19:44:41 | 3,725,678 | 41 | 12 | null | 2023-03-15T16:14:41 | 2012-03-15T06:01:36 | null | UTF-8 | C | false | false | 669 | c | // subject.c
// Generated by decompiling subject.exe
// using Reko decompiler version VERSION
#include "subject.h"
// 004074E0: Register Eq_2 Win32CrtStartup()
DWORD Win32CrtStartup()
{
eax + globals->dw4080D0 == 0x0D;
word32 * edx_32 = dwArg00;
do
{
struct Eq_24 * edx_36 = edx_32 - 0x1F;
word32 ecx_39 = edx_... | [
"i-git-stone@rf.risimo.net"
] | i-git-stone@rf.risimo.net |
e2b0b4b65a3a3eddd0200346dd0c6a8256b5d64d | 552d8544e016a2ba1e44af10d578963d1df0b3f3 | /src/week2/서경욱/2869.c | 78e5257b2e20152e4e3e5dd3f8ce12e8d747f890 | [] | no_license | carmaking/BOJ-coding | 764054739aabdfaa3035aa871f7e218bc11a129b | 455b58cd2560e4f460a8fd5a0e83b9a3fda5c1c1 | refs/heads/main | 2023-03-29T19:33:34.225596 | 2021-03-29T11:50:42 | 2021-03-29T11:50:42 | 342,862,967 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 249 | c | #include <stdio.h>
#include <math.h>
int main(){
int A, B, V, day=0;
scanf("%d %d %d",&A,&B,&V);
if(A==V)
printf("1");
else{
day=ceil((double)(V-A)/(A-B))+1;
printf("%d",day);
}
return 0;
}
| [
"noreply@github.com"
] | carmaking.noreply@github.com |
3470c0c12533834de9b4e40737e3947faae29b75 | 514d530ff8c191cfa048508a94fe0a1b7efc53ac | /src/plot.c | 8f6639f0125fb6ba3c9ea73598ff29adafbccc44 | [
"MIT"
] | permissive | jacobsebek/japlot | 088f8d13c957a9af110a5830fb8c2c4deb64838d | d2cf6db3461867c5a4130489eb345ba283cbc43a | refs/heads/master | 2023-01-28T17:20:32.765437 | 2020-12-06T14:06:03 | 2020-12-06T14:06:03 | 284,339,418 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,577 | c | #include "plot.h"
#include "parser.h" // compute
#include "renderer.h" // camera macros
#include "console.h" // settings
#include "error.h"
#include <math.h> // isnormal
int pointf_compare(const pointf* p1, const pointf* p2) {
return (p1->x < p2->x ? -1 : p1->x > p2->x ? 1 : 1);
}
void graph(double sta... | [
"jamertwo@gmail.com"
] | jamertwo@gmail.com |
8c3bcad1cd144db856b09b9bf72f17d0f7ce63b6 | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/080/377/CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf_53a.c | 4eddd1b9c909c0ecfeb93d78d8ab1cd8678349fc | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,167 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE134_Uncontrolled_Format_String__char_listen_socket_snprintf_53a.c
Label Definition File: CWE134_Uncontrolled_Format_String.label.xml
Template File: sources-sinks-53a.tmpl.c
*/
/*
* @description
* CWE: 134 Uncontrolled Format String
* BadSource: listen_socket Read data... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
872023da4194758edcb90126e1f81543f76d0983 | e3d09a057308bbcbc9b5a81e16e8adb97402adfa | /play/play.h | e3746fa654b04a875869333b87ae0a471befbc08 | [
"MIT"
] | permissive | jeffwilliams/wwwmp3 | bd59362eed55439dcd6ea8b5783bc8804617d02e | 5668e1bd4d523d7dfa3f423c89738185144d802b | refs/heads/master | 2021-01-19T10:18:21.381520 | 2019-11-20T02:04:35 | 2019-11-20T02:04:35 | 26,654,159 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,262 | h | #ifndef PLAY_H
#define PLAY_H
#include <mpg123.h>
#include <ao/ao.h>
typedef struct {
char* title;
char* artist;
char* album;
char* tracknum;
} play_metadata_t;
typedef struct {
mpg123_handle* mh;
size_t buffer_size;
unsigned char *buffer;
} play_reader_t;
void play_init();
void play_free();
int play_... | [
"jeffsmessages@gmail.com"
] | jeffsmessages@gmail.com |
1fc9abb10205c85ac8877fad639dce17078137a3 | 072ef561d7936807d9b96c842c22a5538ea31374 | /Editor/Include/Common/em_var.h | 35a97608fffac7bc44c4aa9bf39f7f57ec7fd3ca | [] | no_license | uchuugaka/BarrysEmacs | ef75940585f66192604e638122604cfd65e94004 | c66d4d3aa3291a8e83cf7d10ea0df7c179940720 | refs/heads/master | 2021-04-09T15:22:43.223036 | 2018-03-15T19:27:10 | 2018-03-15T19:27:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,997 | h | //
// Copyright 1986-2002 Barry A. Scott
//
extern EmacsString default_environment_file;
extern EmacsString version_string;
extern SystemExpressionRepresentationTermProtocolMode protocol_mode;
extern int complete_reinit;
extern bool touched_command_args;
extern volatile int timer_interrupt_occurred;
extern QueueHea... | [
"barry@barrys-emacs.org"
] | barry@barrys-emacs.org |
9dc6dea07601ff0e7648881ef80b339d6034898d | bf5c62699e68a87817cf092f7ab80fff0d1f5f55 | /thread-ex.c | cb77ab775973b5b10c160a8d46fcb09aef7cc706 | [] | no_license | ocagdas/cmake_test | 602b75850caad7257f6d65dc6cdfc15b137cfed7 | f3055168b83f132a86e7b4df681b2d1a0dd894ce | refs/heads/master | 2020-04-11T06:01:47.592286 | 2018-12-13T01:35:54 | 2018-12-13T01:35:54 | 161,568,261 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,097 | c | #include <unistd.h>
#include <sys/types.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <string.h>
int print_message_function(void *ptr);
/* struct to hold data to be passed to a thread
this shows how multiple data items can be passed to a thread */
typedef struct str_thda... | [
"ozgur.cagdas@tunstall.com"
] | ozgur.cagdas@tunstall.com |
c1f715a7658eadb031afee4c6bdfb7d518accf32 | 5c268bc561b42255d23d5435235b341d7d7d9f7e | /src/config.h | 801f3df989e4793a96df4cf53f867d1a3a7dc08d | [] | no_license | bootchk/sleepSyncAgent | afb26a88fa58b6bf1b7b03f2eaa968da33888e7d | 756f20e67bec1d9935b415fdb90662864a7a45d2 | refs/heads/master | 2021-01-20T20:56:37.324844 | 2018-04-30T19:12:09 | 2018-04-30T19:12:09 | 65,410,662 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,615 | h | /*
* Configure:
* - optional behaviour of SyncAgent
* - library build
*/
// XXX rename idle near brownout
/*
* Define this if SyncAgent should conserve power
*
* Yes:
* SyncAgent checks Vcc and will not transmit sync or convey work if Vcc is low.
* SyncAgent still keeps the sync schedule, but it drifts (witho... | [
"bootch@nc.rr.com"
] | bootch@nc.rr.com |
18e53af829e8f0da9948be667d3690491e1a720b | b4f4bf3abb5e153dde0044898abe40a578dec948 | /config.c | f634887ca13def36b8648405a39aa0f7e2f0684d | [] | no_license | warrenseely/robot | 05d74232e2a4840477634a64c56a0ef4d8867794 | 980fffbeb0021f3d817f267e73a9988596a2b595 | refs/heads/master | 2021-01-21T16:32:18.081561 | 2014-11-26T04:17:42 | 2014-11-26T04:17:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 584 | c | /* SYSCLK = 80 MHz (8 MHz Crystal/ FPLLIDIV * FPLLMUL / FPLLODIV)
// PBCLK = 40 MHz
// Primary Osc w/PLL (XT+,HS+,EC+PLL)
// WDT OFF
// Other options are don't care */
/* Oscillator Settings
*/
#pragma config FNOSC = PRIPLL // Oscillator selection
#pragma config POSCMOD = EC // Primary oscillatormode
#pragma config FP... | [
"warren@warrens-mbp.natnow.rr.com"
] | warren@warrens-mbp.natnow.rr.com |
b78bc680fbd643c8a35fd6ee315a4bff41e06ab9 | 39773cb5a7b35dd6216635aaaea4b158ef5800ab | /libft/ft_memcmp.c | f5f60b7684eb328054285b6a2419fba62324eaf8 | [] | no_license | ctreton/2048 | 876ee389b26920322df6123a6bfb905d982f1cfa | 6058d2f7301e8608597eaa4cfacb9314bdce86e0 | refs/heads/master | 2021-05-28T14:49:27.087445 | 2015-02-28T14:32:07 | 2015-02-28T14:32:07 | 31,446,100 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,201 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: ... | [
"ctreton@e1r11p14.42.fr"
] | ctreton@e1r11p14.42.fr |
40acedc33007d8ecd4c6e4060863292efde3f0a4 | 0075bc61f39d3c8ea93093d48abc131c247e4242 | /SortAlgs/yj_simple_select_sort.h | 49d6a335c19ef13476e8e1bb3816c84a110987d1 | [] | no_license | yxjxx/SortAlgorithmsEx | 3fc85fcb29532609d645f217469717496854f6fc | 3d205d9d4457ecb35ba0e4fce7f4c5c3f806b80d | refs/heads/master | 2021-01-19T23:16:18.183037 | 2017-04-26T09:36:02 | 2017-04-26T09:36:02 | 88,956,198 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 255 | h | //
// Created by Jing Yang on 2017/04/21Friday.
//
#ifndef SORTALGORITHMSEX_YJ_SIMPLE_SELECT_SORT_H
#define SORTALGORITHMSEX_YJ_SIMPLE_SELECT_SORT_H
void yj_simple_select_sort (int myArr[], int len);
#endif //SORTALGORITHMSEX_YJ_SIMPLE_SELECT_SORT_H
| [
"i@yxjxx.com"
] | i@yxjxx.com |
56ef2dd126525ea986e2534ee0432dd8495e9fb1 | 975ed616b7a8e4a0016a0d12135a7daf17553bc3 | /gwlua/png/boxybold_54.h | 930374e15c1fa5c54061ecf75284d63954613a67 | [
"Zlib",
"CC0-1.0"
] | permissive | libretro/gw-libretro | a667af4b05db9f8fbe3f30506cc59ceb932947a8 | 0ecff52b11c327af52b22ea94b268c90472b6732 | refs/heads/master | 2023-06-07T20:44:02.339907 | 2023-05-28T04:01:25 | 2023-05-28T04:01:25 | 31,514,379 | 38 | 49 | Zlib | 2023-05-28T04:01:26 | 2015-03-01T23:02:16 | C | UTF-8 | C | false | false | 3,712 | h | const unsigned char gwlua_png_boxybold_54_rle[] = {
0x00, 0x10, 0x00, 0x10, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x72,
0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xe4,
0x00, 0x00, 0x01, 0x0a, 0x00, 0x00, 0x01, 0x... | [
"andre@leiradella.com"
] | andre@leiradella.com |
21533d5498040ee63f4061de863dde983907d83e | 617bd24f8c106b9c707a0afcef2abc2b64e08e43 | /ios/Pods/Headers/Private/ReactABI32_0_0/ABI32_0_0ARTGroup.h | c332704dff6a88e59b436a0a9611f180815ce1de | [
"MIT",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | atiato78/expo | 54f15c932a3984f2a60b7fddc9bd55c470ba92e4 | 0c9ef858e125b5f9d421edc183ec10aa84c9b41b | refs/heads/master | 2022-12-15T09:30:33.721793 | 2019-07-31T20:04:43 | 2019-07-31T20:04:43 | 199,931,004 | 2 | 0 | MIT | 2022-12-04T05:33:11 | 2019-07-31T21:24:06 | Objective-C | UTF-8 | C | false | false | 78 | h | ../../../../versioned-react-native/ABI32_0_0/Libraries/ART/ABI32_0_0ARTGroup.h | [
"sjchmiela@gmail.com"
] | sjchmiela@gmail.com |
582b9372741d51b65ff14c388fb7fa91a227a89a | 75769bea756af71dd3359711c0d96a08849ae7b8 | /cn/localhost01/lteenodeb/lte_rrc/cspl/ports/cygwin/os.c | 94a5cca0a47e7d06be7d31b97e44a9fed3186a8f | [] | no_license | windy-zzf/C_code_annalyze | ed986c6c24b7e410eae9790736209f8b0dbf15a8 | da038bcc9eda6a853f13bb39313917a16694271b | refs/heads/master | 2023-03-27T04:09:28.453216 | 2021-03-29T05:47:41 | 2021-03-29T05:47:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,387 | c | /****************************************************************************/
/** Copyright (C) 2006 Aricent Inc . All Rights Reserved */
/****************************************************************************/
#include <cspl.h>
static void *__qvc;
static void *s_malloc( unsigned int size )
{
return malloc( ... | [
"820713556@qq.com"
] | 820713556@qq.com |
5f30476e74e8de08d15a45a47878fdd8b828162a | f3a36328c359e0b98b48432d7055ca74c6c5687e | /Unix/chapter10/section4/SharedMemServer_svc.c | a481b2d7f7454d7fe049b0c35845f3a1a8075abc | [] | no_license | t-hagan/Unix-Windows-Comm | 206db20dc869ba08ea57c6f82ebf5a36f73f0437 | e8a73356c5c889ce670d027b384765fdcdbaeced | refs/heads/master | 2021-01-10T03:15:47.520279 | 2016-02-17T18:23:03 | 2016-02-17T18:23:03 | 51,946,024 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,794 | c | /*
* Please do not edit this file.
* It was generated using rpcgen.
*/
#include "SharedMemServer.h"
#include <stdio.h>
#include <stdlib.h> /* getenv, exit */
#include <signal.h>
#include <sys/types.h>
#include <memory.h>
#include <stropts.h>
#include <netconfig.h>
#include <sys/resource.h> /* rlimit */... | [
"hagan.tom.a@gmail.com"
] | hagan.tom.a@gmail.com |
dfa270bc4d480bd6f58e42dea0203bd22fdb68c4 | b814977ac238d1e7070f922ee56f131d2902faad | /devoir2.c | c9210b148535518fb81d63bbb555e4b97830a27a | [] | no_license | Tttbkhn/CTest | 853e77495f1f1fdb6a4144eaa249fd1002be987e | 843c4743e1afdd55d92d2bbfd6e541873222ccaf | refs/heads/master | 2020-08-14T20:26:15.404441 | 2019-10-15T10:51:35 | 2019-10-15T10:51:35 | 215,228,597 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,209 | c |
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include "devoir2.h"
void swap(char *x, char *y);
char *lettres = "abcdefghijklmnopqrstuvwxz";
//*str is the string, l is the starting index, r is the ending index
int permute(char *encmessage, char *pattern, char *str, int l, int r)
{
... | [
"thangbkhn5691@gmail.com"
] | thangbkhn5691@gmail.com |
e6bc7acd2421477959a34259608c317c75e63438 | f8d7f736ea8bbfd3a2e708424b17b0e21fc5ba32 | /arduino/esp.h | 5af40c59a64589d077cc8d3dddba0fd605ea0667 | [] | no_license | NaelSaleh98/CMSM | 7c53cd634853217445aae0ce51a753e55cda5f15 | 19eb05b8607455c36501c11975af10b9cdde2a88 | refs/heads/master | 2023-06-05T06:40:59.457640 | 2021-06-25T22:15:49 | 2021-06-25T22:15:49 | 380,364,500 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 216 | h | /*
* Constants.
*/
const String URL = "http://192.168.137.1:8080/";
/*
* Connect To ESP
*/
void ConnectToESP();
/*
* Send Request To ESP And Then To server
*/
void SendRequestToESP(const String& request);
| [
"naels141@gmail.com"
] | naels141@gmail.com |
2aa7445081245ad1503e44e1a2d984444f451023 | d5626fe08a9de469ddf1e4193793df7efd8fe6e3 | /src/sys/netmpls/mpls_raw.c | 67143d4f53a61895641d9bec444304bbc091e18f | [] | no_license | drt24/openbsd-import | 1767ddb9e03bb9a0974c8c0e4237e1edc1cdf67d | 0de99edb5131e82e7d249a0c4cd36cf157e03b9b | refs/heads/master | 2022-11-16T19:36:52.859427 | 2020-07-09T07:45:13 | 2020-07-09T07:45:13 | 280,720,846 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,518 | c | /* $OpenBSD: mpls_raw.c,v 1.15 2017/02/27 19:16:56 claudio Exp $ */
/*
* Copyright (C) 1999, 2000 and 2001 AYAME Project, WIDE Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
... | [
""
] | |
2bb9be62c174b2e4135624e4eeb68cb8d5e22b06 | f1c774b242faf87e7f084ff678295297e743cd31 | /src/ajouter.h | 3a7d4d29e749d52d58e962e2bcc3537c6f270f5b | [] | no_license | ELGhoulGhazi/projetlocation | e052113f152c205fee479c436ef69f94d2b82b25 | 5dd093563c22f50a4a465072a6b5297e8008e9a9 | refs/heads/master | 2020-09-25T06:15:46.705786 | 2019-12-09T19:13:57 | 2019-12-09T19:13:57 | 225,936,152 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,041 | h | #include <gtk/gtk.h>
typedef struct
{
char marque[50] ;
char couleur[2000];
char carburant[2000];
char matricule[2000];
char cheveaux[2000];
char prix[200];
}loc ;
typedef struct
{
char marque[50] ;
char date[50] ;
char cin[50];
int nbj ;
int prix;
}reserv;
void ajouterlocation (loc l) ;
void afficherlo... | [
"ghazielghoul100@gmail.com"
] | ghazielghoul100@gmail.com |
9c84f96b39b6814b78188ee3a4f37bd28c1b6ef0 | 7c02ed7d1f98f8b3942804b933445e69067d00b2 | /phalcon/kernel/hash.c | 581c294a3f05d789a76f2d2985e577431286e3ed | [
"PHP-3.01"
] | permissive | fallgold/pacl | aa1da8e26058d1a398c4c895b3c6e49aeb87c2a8 | ba21c6dffac36f9a6f9c1c6e4ef646505f54a9e4 | refs/heads/master | 2021-01-01T16:00:27.953776 | 2013-11-30T16:12:28 | 2013-11-30T16:12:28 | 14,824,070 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,990 | c |
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2013 Phalcon Team (http://www.phalconphp.com) |
+-----... | [
"fallgold@gmail.com"
] | fallgold@gmail.com |
c9509f0b78bde2eec38cff5ecff12a58ff8776e9 | 8701c9e070f23950ac6bbaca96cd8a0dd004744e | /CMSE822HW6/bucket_sort/bucket_sort_v1.c | c1c5a93b01a370afb9ccdc038633d4aecef632aa | [] | no_license | boyaozhu/Parallel-Computing | c8f65d1f5738565693ed04ceebda8dc7f7819b23 | 87bf8bda4d53b3ef45945afebeaac3a96de27d6a | refs/heads/master | 2020-11-28T16:59:39.585602 | 2019-12-24T05:19:13 | 2019-12-24T05:19:13 | 229,874,725 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,075 | c | #include <stdio.h>
#include <stdlib.h>
#include "mpi.h"
#include <time.h>
// Comparison function used by qsort
int compare_dbls(const void* arg1, const void* arg2)
{
double a1 = *(double *) arg1;
double a2 = *(double *) arg2;
if (a1 < a2) return -1;
else if (a1 == a2) return 0;
else r... | [
"zhuboyao@msu.edu"
] | zhuboyao@msu.edu |
1cf98ff08a32bbe992a1f7da7ad438beef54b406 | 39c20a3856f1f4044c6f58e83dd1963e05fdc28a | /src/board.c | 49ec3262c6c33b1f95e7c1c32d7a640931efd519 | [] | no_license | DonUber/UtopAI | 1e5a570511e03a4e2f96c385ff91c5e1286af32a | 5df4980526af3083ddaa0951e60b5f7b4a579e77 | refs/heads/master | 2020-06-05T17:01:29.823807 | 2014-12-23T19:43:38 | 2014-12-23T19:43:38 | 19,619,942 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,591 | c | #include "inc.h"
#include "stdio.h"
int setPos(char *fen, BOARD *board){
resetBoard(board);
char i=63,c,j;
while((i >= 0) && *fen){
c=0;
switch (*fen) {
case 'P': SETBIT(board->WHITE_PAWN,i);SETBIT(board->BOTH,i);SETBIT(board->WHITE,i);i--; break;
case 'R': SETBIT(board->WHITE_ROOK,i);SE... | [
"donuber36@gmail.com"
] | donuber36@gmail.com |
f707b5897756b1afc665ab2333715cafae33eb46 | 3147a443c14e206dc8400b9fe0072c3828e4f116 | /asa_backdoor_lp/protocol.h | 728b172a4e59bfbd04d22e36671c54a0922ae460 | [] | no_license | triplekill/Cisco_ASA_Backdoor | f0e3b0f1400c4d4b80fec2e2ea0e3c796aec87d6 | 167f5cc20a1284c84b5d370a298383e3fa3de1eb | refs/heads/master | 2022-01-12T06:15:28.717710 | 2019-06-04T07:45:08 | 2019-06-04T07:45:08 | 279,435,519 | 1 | 1 | null | 2020-07-13T23:46:48 | 2020-07-13T23:46:47 | null | GB18030 | C | false | false | 3,400 | h | #ifndef PROTOCOL_H_INCLUDED
#define PROTOCOL_H_INCLUDED
enum _protocol_type_
{
PROTO_CONTROL = 1, //对后门的控制命令
PROTO_REPO_STAT, //返回的命令执行状态
PROTO_FRAG, //一组分片报文
};
typedef struct _Protocol_Header_
{
char key[20]; //通讯KEY
unsigned char type; //上层协议... | [
"weizinan@360.cn"
] | weizinan@360.cn |
303b7c0b540bf12228fe0d7240a18a413ce939b0 | 3111977065461dd2a0491808045d74a8d6f324aa | /apps/synthesizers/midibox_sid_v3/mios32/tasks.c | f8a28c1d45b11453aadfd5321e9d83a61b07ab85 | [] | no_license | midibox/mios32 | f432297aacf7c706e5585ea71fb3222d8502a342 | bdd95cde24e4a67cdd9ebb9146cf3e9f6d2632d7 | refs/heads/master | 2023-01-07T08:22:46.311366 | 2022-12-30T15:16:27 | 2022-12-30T15:16:27 | 173,444,152 | 71 | 31 | null | 2022-12-30T15:16:28 | 2019-03-02T12:17:13 | C | UTF-8 | C | false | false | 8,260 | c | // $Id$
/*
* FreeRTOS Tasks
* only used by MIOS32 build, as a Cocoa based Task handling is used on MacOS
*
* ==========================================================================
*
* Copyright (C) 2008 Thorsten Klose (tk@midibox.org)
* Licensed for personal non-commercial use only.
* All other ... | [
"tk@midibox.org"
] | tk@midibox.org |
052e449be2f03469aa0a5d7c3006be2a799eceb9 | 473fc28d466ddbe9758ca49c7d4fb42e7d82586e | /app/src/main/java/com/syd/source/aosp/external/vixl/test/aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-amount-1to31-a32-bics.h | ddbe3a8aace67959f719e754afa89df28e665752 | [] | no_license | lz-purple/Source | a7788070623f2965a8caa3264778f48d17372bab | e2745b756317aac3c7a27a4c10bdfe0921a82a1c | refs/heads/master | 2020-12-23T17:03:12.412572 | 2020-01-31T01:54:37 | 2020-01-31T01:54:37 | 237,205,127 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 110,460 | h | // Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions ... | [
"997530783@qq.com"
] | 997530783@qq.com |
98bbc3cf42f0e92cb72292364503bcbef0b1d6df | d811e809661a3f5e8e8022b5433d82a86ae4b9c2 | /helper.h | 3851a749d3d81d8749973d13e825713682a19432 | [] | no_license | imas8888/Solduko | 1fca2f485c41c1ee60a851d396e1a863d62d490f | 950a4f17dc34ad50941beaf202bc52dd704177bb | refs/heads/main | 2023-02-21T21:18:04.079265 | 2021-01-27T14:28:42 | 2021-01-27T14:28:42 | 314,094,727 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 384 | h | /* Header file "helper.h" */
/* Aurthor: Sami Khan
Program last changed: 21/10/2019 */
#ifndef HELPER_H
#define HELPER_H
/* FUNCTION TO CHECK A BLOCK IN THE SUDOKU BOARD IS CORRECT */
bool check_box(int rowStart, int columnStart, char board[9][9], int digit);
/* FUNCTION TO FIND THE FIRST EMPTY CELL ON A SUDOKU ... | [
"noreply@github.com"
] | imas8888.noreply@github.com |
5930550dd99fae9e3c90bbbbda57a6ace3c4882a | d82ca84f6b7fdf8cf4218ec93b2b7edd80db8276 | /sysutils/john-devel/files/patch-params.h | 8f8e61e4a041b79c7a0aba80b639596a34acf513 | [
"BSD-2-Clause"
] | permissive | DalavanCloud/macports-ports | 2858465684125671758a37b4a9c47a55fb6eab9a | 959c13980d4750f9abca914ebcdb0e2b9f860b49 | refs/heads/master | 2020-04-24T00:10:27.899916 | 2019-02-19T22:05:41 | 2019-02-19T22:05:41 | 171,558,123 | 1 | 0 | NOASSERTION | 2019-02-19T22:11:18 | 2019-02-19T22:11:18 | null | UTF-8 | C | false | false | 629 | h | --- params.h.orig 2008-07-13 15:38:46.000000000 -0600
+++ params.h 2008-12-07 15:13:46.000000000 -0700
@@ -49,15 +49,15 @@
* notes above.
*/
#ifndef JOHN_SYSTEMWIDE
-#define JOHN_SYSTEMWIDE 0
+#define JOHN_SYSTEMWIDE 1
#endif
#if JOHN_SYSTEMWIDE
#ifndef JOHN_SYSTEMWIDE_EXEC /* please refer to the notes ab... | [
"blb@macports.org"
] | blb@macports.org |
6d4cb48aa6f4656b08bddc1f4223f5160fcc1e2d | a18857887c625283fb88a0c9feeb0bb5ab8989e2 | /pindefs.h | 81e55e50552c42d9f66d7267ab440e9ff0eea051 | [] | no_license | lukaslehnert/DigitalAnalog | 105cb022f7403dc3fc7aff74356c74e92f333dd7 | 07fd029084ba9066e1569affaa16075a3e92b52d | refs/heads/master | 2021-05-18T15:17:57.138804 | 2013-06-26T00:02:05 | 2013-06-26T00:02:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 671 | h | #define SDA PA6
#define SCL PA4
#define SDA_PORT PORTA
#define SCL_PORT PORTA
#define DDR_USI DDRA
#define PIN_USI PINA
#define POS PA5
#define NEG PA7
#define STATUSPORT PORTA
#define STATUSIOPORT DDRA
#define STATUSLED PA7... | [
"ryan@krabath.net"
] | ryan@krabath.net |
7bcc36dd07f8308519c790c7ebc487fcd777d16e | bf2853a8273cd6aed6e54df0a554cedd699bcc79 | /projects/power_test/src/simple_shell/simple_shell.c | ec4cd223b5dc26a33b6269a7659b451a5f206d57 | [
"MIT"
] | permissive | gits00/MicroML | a56b51dbdcdf1bce210aded048be317a6badb724 | 1dd784f735e5ed5aab878bf4f7204001ba63e9ef | refs/heads/master | 2023-02-22T09:10:37.527060 | 2021-01-31T11:28:31 | 2021-01-31T11:28:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,355 | c | #include <string.h>
#include <libopencm3/stm32/gpio.h>
#include "system_setup/utility.h"
#include "system_setup/printf.h"
#include "uart_ctrl.h"
#include "simple_shell.h"
#include "inference/inference.h"
#include "flir/flir.h"
static shell_cmd parse_command(char * buf, uint16_t len);
static bool execute_command(shell_... | [
"marko.sagadin42@gmail.com"
] | marko.sagadin42@gmail.com |
7b21c88d38ab77af3a40f8d9c152368b8c60c870 | 9862db88f9e4fc35e87cc1a51e8d00032c070f72 | /3.FinalTransformation/makejson/packages/ATLAS/src/blas/level3/kernel/ATL_sycopyU.c | 5f73cdb15de5de912476d0ec084d2a2936fdefbb | [] | no_license | mitragithub/Registration | 6bfb09ecf418c8e8c907c52f84cf8c50670e3fcb | 062b6b50eac41340b26d1be7382285137326544d | refs/heads/master | 2023-07-17T02:14:18.171582 | 2020-10-30T16:56:21 | 2020-10-30T16:56:21 | 194,163,522 | 5 | 2 | null | null | null | null | UTF-8 | C | false | false | 3,173 | c | /*
* Automatically Tuned Linear Algebra Software v3.10.2
* (C) Copyright 1997 R. Clint Whaley
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code... | [
"xl1393@nyu.edu"
] | xl1393@nyu.edu |
37582dca957dae108e10b8dfbd2d10f43d505732 | f497556eda15e0cc7281bdd70cdf57f27360d311 | /AppJiPiao/Pods/Headers/Public/UMengUShare/KakaoOpenSDK/KOSessionTask+TalkAPI.h | 6b6a387934937600863d89ea41973bdb59b5c159 | [] | no_license | amj94j/TuLing | 40018089e99e09f22a2d8e2cf9fd5f0b234851e4 | d00293ad956d50a8a1eb69c17a157039acfc551c | refs/heads/master | 2021-05-08T21:34:01.500622 | 2018-02-01T06:22:46 | 2018-02-01T06:22:46 | 119,643,854 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 121 | h | ../../../../UMengUShare/UShareSDK/SocialLibraries/Kakao/KakaoOpenSDK.framework/Versions/A/Headers/KOSessionTask+TalkAPI.h | [
"amj94j@163.com"
] | amj94j@163.com |
22b3b9217a572f6ecf3d7b9ca25767610c918c58 | 4844d17224e5fb0aeeeac3b4ed33ca8aefc537bc | /g27.c | 85be1992f572e8c93a7764e4f032e3de7cc5fb6c | [] | no_license | ndineshanbu/dinesh | 20d203736b25f6f4feec8dd161260e1ce972e986 | ebbc09c34d1b1e6044181efb13948ab76f1415f0 | refs/heads/master | 2021-01-01T16:52:42.725403 | 2017-12-13T11:12:03 | 2017-12-13T11:12:03 | 97,938,922 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 165 | c | #include <stdio.h>
void main()
{
int i,n1,n2,lcm;
scanf("%d %d",&n1,&n2);
lcm=(n1>n2)? n1:n2;
while(1)
{
if
printf("\n %d",sum);
}
| [
"noreply@github.com"
] | ndineshanbu.noreply@github.com |
ec2908117898453c526a6779a0945ed5588d7cf7 | a9079bf492303b0fa58596e731324b834a23ae07 | /Root/LinkDef.h | 31dd304e61959b1dfa20fb24c8be3a13ec93b93f | [] | no_license | AvivCukierman/JetLearning | d05b2b8ebe4534e9b5a2b655e81d144b421652dc | bcab7776e4ac5955a85fc9af71d49d3873365081 | refs/heads/master | 2021-01-19T07:41:32.317449 | 2017-08-24T17:15:08 | 2017-08-24T17:15:08 | 100,643,657 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 262 | h | #include <JetLearning/JetLearningAnalysis.h>
#ifdef __CINT__
#pragma link off all globals;
#pragma link off all classes;
#pragma link off all functions;
#pragma link C++ nestedclass;
#endif
#ifdef __CINT__
#pragma link C++ class JetLearningAnalysis+;
#endif
| [
"aviv.ruben.cukierman@cern.ch"
] | aviv.ruben.cukierman@cern.ch |
85a9865eead3674c14de4cf2caad493e8d6ba29a | 04b2d83f1283fa9132b8a9d71bf85f35e2813ad2 | /Projects/STM32F412ZG-Nucleo/Examples/SPI/SPI_FullDuplex_AdvComPolling/Inc/stm32f4xx_hal_conf.h | cb497d26e78e82f9789727eaed5de1716f8e74c7 | [
"Apache-2.0",
"BSD-2-Clause"
] | permissive | ghsecuritylab/STM32F4-Cube-Firmware | 3efcfcc25c8d8e26d0fb50c9466df75c289b54fd | f8f0aa59b93cf04d50daadd08d21d9ca3c958eef | refs/heads/master | 2021-02-26T17:22:11.754064 | 2020-02-18T09:53:58 | 2020-02-18T09:53:58 | 245,542,632 | 0 | 0 | NOASSERTION | 2020-03-07T00:37:40 | 2020-03-07T00:37:40 | null | UTF-8 | C | false | false | 17,236 | h | /**
******************************************************************************
* @file stm32f4xx_hal_conf.h
* @author MCD Application Team
* @brief HAL configuration file.
******************************************************************************
* @attention
*
* <h2><center>©... | [
"alxhoff@gmail.com"
] | alxhoff@gmail.com |
0178a48f4b6f676ed16f9faa52d23f14d400b242 | 75daadce72901f5c7c622234adc8e80ffe0f5a55 | /Pacmania/Generated_Source/PSoC4/GLCD_SPI_SCB_PVT.h | 4b3a95cf11c85c18581eee92ecc8e54eeba386e4 | [] | no_license | tdoan1024/Microcontrollers | ef585cca5d48499d8598bf67a7bc66699d5f4587 | f52635696669f3b182d6b6c0cad136215d3bc6f0 | refs/heads/master | 2020-05-08T23:50:36.264897 | 2019-05-08T09:12:36 | 2019-05-08T09:12:36 | 180,973,315 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,463 | h | /***************************************************************************//**
* \file .h
* \version 3.20
*
* \brief
* This private file provides constants and parameter values for the
* SCB Component.
* Please do not use this file or its content in your project.
*
* Note:
*
****************************... | [
"tdoan1@spu.edu"
] | tdoan1@spu.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.