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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4fd66a7c4abbdbce2cd1dca1b50cf0785ba443be | 78de9047bf8d0b4738cfa9694a97f7280d0715c0 | /0x17-doubly_linked_lists/3-add_dnodeint_end.c | 6b9736a216ee5b4373e50e7e30c0a1d6bd41958e | [] | no_license | MIlenaMontoya/holbertonschool-low_level_programming | d4f45eae37cb48e79f6c7e1f399a5f4a0947f14f | 24a56d8e7b98096b5b8367c0a869c1cf1844b127 | refs/heads/master | 2023-02-18T21:30:43.264454 | 2021-01-15T00:57:42 | 2021-01-15T00:57:42 | 271,256,354 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 658 | c | #include "lists.h"
/**
* add_dnodeint_end - adds a new node at the end of a dlistint_t list.
* @head: douuble pointer to the list
* @n: integer to add to the list
*
* Return: address of new element
*/
dlistint_t *add_dnodeint_end(dlistint_t **head, const int n)
{
dlistint_t *new_node, *aux;
if (head == NULL)
re... | [
"1852@holbertonschool.com"
] | 1852@holbertonschool.com |
5ae5473f0f0e0273d69fbb07902d58ef6ec31a92 | dec691f24a5a8c204c9394778d237ee83c48ac94 | /mymacros/AddBranch.C | e6a0ac5654d6e0280fe8945c06a1cca57a5ec123 | [] | no_license | sgnoohc/login | c94eafd6bfb81224f6943cd807a455f5a48085ae | cdf3e08b721e6659e8122df46b2c08638bfde3c2 | refs/heads/master | 2021-01-19T23:01:12.526630 | 2017-09-22T16:57:45 | 2017-09-22T16:57:45 | 88,910,252 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,723 | c | // Add Branch to a new file. Opens up the 'filename/treename' and then
// adds a branch with the 'expression' 'exprname' with 'type'
// e.g. Adding a new variable from a existing variable,
// isOS = lepID0*lepID1
void AddBranch( const char* filename,
const char* treename,
const c... | [
"sgnoohc@gmail.com"
] | sgnoohc@gmail.com |
216408c65d70f38072d268bbef9d59c3101dafde | c099d7e3ab1a074f25058b1b402bc1126f11ebb3 | /DesignAssignments/DA2A/Task 1/GPIOs_Part1_C/GPIOs_Part1_C/main.c | b2e532a8ddb0a8a42336a391d058153cd966f904 | [] | no_license | johnsb18/ClassRepository | e0eaef2a1ce9742d6e10ae88555b7311a4773445 | bde7f96fb42d16ab3fcfb1d0f909fc34ac49f2f6 | refs/heads/master | 2020-04-23T09:13:11.872519 | 2019-05-15T01:08:34 | 2019-05-15T01:08:34 | 171,061,485 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 481 | c | /*
* GPIOs_Part1_C.c
*
* Created: 3/2/2019 4:46:15 PM
* Author : Benjamin Johnson
* Student #: 5003284489
* Email: johnsb18@unlv.nevada.edu
*/
#define F_CPU 16000000UL
#include <avr/io.h>
#include <util/delay.h>
int main(void)
{
DDRB |= (1<<2); // set PORTB.2 for output
while (1)
{
... | [
"johnsb18@unlv.nevada.edu"
] | johnsb18@unlv.nevada.edu |
09b99a3e6acc0ef5b1773dee702de7753bfd9d93 | 537e3c08872cb50a19fe7912202bc1406e964e63 | /device/msp430dev/adc.h | 769386a493fc31b974a006802023e4ec59425756 | [
"MIT"
] | permissive | start-x/startx-src | 541b3a9b8fa1255552d6c3bc738f92406a0a7be0 | 4f09e6d42af365cd69f8d1ada6e2b2ab4b4f5632 | refs/heads/master | 2021-01-20T06:59:51.963653 | 2014-12-05T00:49:40 | 2014-12-05T00:49:40 | 23,094,402 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 963 | h | #include <legacymsp430.h>
#include <msp430.h>
#define SUCCESS 0
/* Operation not permitted */
#define EPERM 1
/* No such device or address */
#define ENXIO 6
/**
* @fn adc_read
* @brief Read a Analogic port
* @param unsigned char CH : Input the port to read
* @return Return the value in Long Int.
*/
ext... | [
"ziuloliveira@gmail.com"
] | ziuloliveira@gmail.com |
10277427be17af11b0237568dd0cd29d08c088d4 | fd2f395d19787b616d536fe307682c294315f962 | /Programs/lsearch.c | 33f5651532b09ce0b4d8151e10edc218f7115ee0 | [] | no_license | spacebiz24/C-Basics | 0c47be9f18c7540d37b661616b4658c2c0e5e1b8 | c1ecfd86038c8adf8bc79bdfee4c23474a4bb101 | refs/heads/main | 2023-08-03T20:14:50.906469 | 2021-09-09T15:14:05 | 2021-09-09T15:14:05 | 371,260,397 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 614 | c | #include <stdio.h>
#include <stdlib.h>
void main()
{
int arr[100], ele, n, flag = 0, i;
printf("Enter the number of elements in the array:\n");
scanf("%d", &n);
printf("Enter the array elements:\n");
for (i = 0; i < n; i++)
scanf("%d", &arr[i]);
printf("Enter the element to s... | [
"78657717+spacebiz24@users.noreply.github.com"
] | 78657717+spacebiz24@users.noreply.github.com |
04a6d9de2d9b69b2b2abae8d86d34eceaa31a68e | da8367e9e42166e20c4dd40d31ab2ebfacc3e4f0 | /alice3/io_board/stm32f4/ps2_keyboard.h | 54c3acde360a528ed8a796c283e8e2085b018135 | [
"Apache-2.0"
] | permissive | lkesteloot/alice | 097a3c13a156e456d161c55e90ba0714f5d8325c | 0b18cb6ee8a98b06f2280ed1284ab10cf13e2b13 | refs/heads/master | 2023-04-15T20:23:48.411520 | 2023-03-20T16:52:06 | 2023-03-20T16:52:06 | 40,038,123 | 72 | 10 | Apache-2.0 | 2018-10-13T02:15:33 | 2015-08-01T06:44:37 | C | UTF-8 | C | false | false | 201 | h | #ifndef __PS2_KEYBOARD_H__
#define __PS2_KEYBOARD_H__
#include "byte_queue.h"
#define PS2_KBD_BAT 0xAA
int PS2_process_byte(int dump_data, unsigned char kbd_byte);
#endif /* __PS2_KEYBOARD_H__ */
| [
"grantham@plunk.org"
] | grantham@plunk.org |
ca0b632a48fc6fc1bfc800b642a8dfdb2b30015e | 73f4b3e32b524914361582a3338441769e28f606 | /build/base/gen/include/config/embox/driver/usb/hub.h | cb8304ff5c0e3bb585b54d25cdb061ef316d2954 | [
"BSD-2-Clause"
] | permissive | clinlfoundation/EMBOX | 6264618b572fec6c96d6bf8509022b2640c1b73b | 00d39726d5ce6fb617ec583c110e29ec25de0c49 | refs/heads/master | 2021-05-18T13:38:46.604379 | 2020-03-30T22:55:43 | 2020-03-30T22:55:43 | 251,266,009 | 0 | 0 | NOASSERTION | 2020-03-30T09:59:35 | 2020-03-30T09:59:34 | null | UTF-8 | C | false | false | 366 | h | /* Generated by GNU Make 4.2.1. Do not edit. */
#ifndef __CONFIG__embox__driver__usb__hub__H_
#define __CONFIG__embox__driver__usb__hub__H_
// This is the most specific implementation type
#ifndef OPTION_NUMBER_embox__driver__usb__hub__log_level
#define OPTION_NUMBER_embox__driver__usb__hub__log_level 1
#endif
#endi... | [
"kouamdoux@gmail.com"
] | kouamdoux@gmail.com |
64f74d43a25a9c3595552b669598d5972ff0ea7d | 35c684b1d9e47369a824cc23f7817a0c7d1aa850 | /uc3b/include/AT32UC3B1256/component-version.h | a3650109589446af3d05d9b34f0a197c2e0713d8 | [] | no_license | JulianvDoorn/atmel-atpack-collection | 52047a54258cc82b93a732d426b215e1fbbe845e | 16eda8a2a6896a1088c13a9260b2e989c7943249 | refs/heads/master | 2020-06-18T21:18:53.882876 | 2019-07-11T19:34:43 | 2019-07-11T19:34:43 | 196,448,205 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,859 | h | /*****************************************************************************
*
* Copyright (C) 2016 Atmel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistribution... | [
"j.g.doornvan@gmail.com"
] | j.g.doornvan@gmail.com |
7b1be34f878eba7bd392229693d3efbf4ab36163 | 32bf6bba96fab1aea6c645f9a256664134065446 | /get_next_line.c | 88c416ad9a23f29ea529ddccf1f6fe33b984a3b7 | [] | no_license | o-maslova/FdF | ea7cf22b4973e50cb0eea3451c1ec5b76b06d8fd | ece5128a23c68fd1661ea08926d4caa7f1ad6f99 | refs/heads/master | 2020-03-23T10:53:41.294104 | 2018-07-31T14:06:42 | 2018-07-31T14:06:42 | 141,468,361 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,694 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.c :+: :+: :+: ... | [
"omaslova@e1r2p12.unit.ua"
] | omaslova@e1r2p12.unit.ua |
dffe8f5747e1f5348871b9c2d1d270e57292bb0f | 3915fa64de8b52a8a557001e3ed5f74780e27a34 | /dist/cpu/efr32bg1p/include/em_device.h | 69d3fb6ae6361b7649829135ec4e10453803f2c7 | [
"MIT"
] | permissive | chrysn-pull-requests/EFM2Riot | 8af43e95941e404dad12951c8b218a9688f5f179 | 7bfa7823a93a7b0a7890cb63e52a26b8cb31b6a7 | refs/heads/master | 2021-01-15T11:08:19.948728 | 2016-05-20T09:33:29 | 2016-05-20T09:33:29 | 59,277,692 | 0 | 0 | null | 2016-05-20T08:26:24 | 2016-05-20T08:26:23 | null | UTF-8 | C | false | false | 2,838 | h | /**************************************************************************//**
* @file em_device.h
* @brief CMSIS Cortex-M Peripheral Access Layer for Silicon Laboratories
* microcontroller devices
*
* This is a convenience header file for defining the part number on the
* build command line, instea... | [
"basstottelaar@gmail.com"
] | basstottelaar@gmail.com |
4e7f6bc2d658cf1f72e0cb9b63119a472ebfb9e5 | 12bf1ea2c14797fd4686503233e90edc3e673424 | /project/realtek_ameba1_va0_example/example_sources/ethernet_mii/src/main.c | 998576d32aacdd055c32c36e00b3a8610fd10725 | [] | no_license | ClarePhang/RTLDUINO_RTL8710AF_GCC | 446488ac0b5168d705eb61160be67813426cc7c2 | 923914edaedd9f49bcfb069417b9c134c9427704 | refs/heads/master | 2020-04-08T04:26:50.709128 | 2016-09-14T13:10:35 | 2016-09-14T13:10:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 921 | c | #include "FreeRTOS.h"
#include "task.h"
#include "diag.h"
#include "main.h"
#include "ethernet_api.h"
#include <example_entry.h>
extern void console_init(void);
/**
* @brief Main program.
* @param None
* @retval None
*/
void main(void)
{
if ( rtl_cryptoEngine_init() != 0 ) {
DiagPrintf... | [
"13826173658@163.com"
] | 13826173658@163.com |
8c51a2dbdbf2f2ffa60bc0192c3bd0e9c86fd531 | c425afb8bb6b182168fd4c3a46c9b334f4740e60 | /maze/jingcheng/xiaoxiang4.c | f95d08e1406e9403bf71e5ff3298c70913c67381 | [] | no_license | fluffos/nt7 | ceef82b2465cf322549c7ece6ce757eaa8ec31ff | 52727f5a4266b14f1796c2aa297ca645ca07282a | refs/heads/main | 2023-06-17T10:07:33.000534 | 2021-07-15T11:15:05 | 2021-07-15T11:15:05 | 308,148,401 | 9 | 9 | null | 2021-06-28T14:11:57 | 2020-10-28T21:45:40 | C | UTF-8 | C | false | false | 706 | c | #include <ansi.h>
#include <ansi.h>
inherit ROOM;
void create()
{
set("short", HIG"小巷内"NOR);
set("long", @LONG
这里是京城街头的小巷,里面三三两两来往着些着装怪异的人群,你忍不住朝
其中的一位多看了两眼,只见对方满脸凶横,看来还是少惹为妙,赶快离开的好。
LONG
);
set("indoors", "city");
set("exits", ([
"northeast" : __DIR__"dadao13",... | [
"i@oiuv.cn"
] | i@oiuv.cn |
9d989be10e00adbd8cb5be48e66bef5f60bf08be | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/third_party/libvpx/source/libvpx/vpx_dsp/ssim.c | cfe5bb331cea8925fe8532b52fc3de5a701fa79e | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C | false | false | 18,489 | c | /*
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributin... | [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
602e7e3cc924f37d60f431964dcf73aeab671852 | 9efb6178080781a1d81ae46161d0897eca935daf | /liteos_to_alicloud/liteos_alicloud_mee_h1智能插座/alibaba/sdk-impl/exports/iot_export_ota.h | 4a84012524ffbd6809b90c446777524df7572d73 | [] | no_license | yxsyxs/LiteOS_Connect_to_3rd_Cloud | 7932d232ed8856207416e08b6b4db480463c44a2 | 5cc5d8335660448d4f8f83fde771fbe2e85194f3 | refs/heads/master | 2020-03-21T11:58:33.326276 | 2018-05-29T09:13:47 | 2018-05-29T09:13:47 | 133,199,051 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,355 | h | /*
* Copyright (c) 2014-2016 Alibaba Group. All rights reserved.
* License-Identifier: Apache-2.0
*
* 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... | [
"zhen.su@huawei.com"
] | zhen.su@huawei.com |
b696396391b98fd10c91cfbe508f0a847acae99d | 7731f28a26f60baef5eb48e936c3b9bdf61d73aa | /settings.h | c7e6413295156a41772cb781b6fba215b47c1343 | [] | no_license | mohamedbakr98/snakeGame | 9edc4e46d3f7791d4de6855b5fa282b463979d8d | 6f661611a0135557632f7fc27fdbcdcb7a32359c | refs/heads/master | 2020-04-23T12:18:57.155168 | 2019-02-17T19:47:10 | 2019-02-17T19:47:10 | 171,164,150 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 313 | h | #ifndef SETTINGS_H_INCLUDED
#define SETTINGS_H_INCLUDED
#define WELCOME_BORDER_COLOR 13
#define WELCOME_TEXT_COLOR 10
#define NUMBER_OF_OPTIONS 3
#define BORDER_X_ZERO 30
#define BORDER_Y_ZERO 2
#define BORDER_WIDTH 25
#define BORDER_HEIGHT 25
#define BORDER_COLOR 10
#endif // SETTINGS_H_INCLUDED
| [
"noreply@github.com"
] | mohamedbakr98.noreply@github.com |
d5e4b2cb55349b886838507eabb1c1c12521bc2b | 7d098aa1c5dcda13f5e72a936e2fe97dd19e39a0 | /0x04-more_functions_nested_loops/0-isupper.c | 9c452febbb6b95ed79255666447d662a94343fe6 | [] | no_license | nicollem05/holbertonschool-low_level_programming | f0ab7b587d894b9013bf7ac4dc4150f8bc1dffc3 | 672a043de3d5baac77dae05426a8ecc67bfcf44b | refs/heads/master | 2022-11-10T00:51:36.809081 | 2020-06-24T04:10:46 | 2020-06-24T04:10:46 | 271,315,602 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 205 | c | #include "holberton.h"
/**
* _isupper - Show 1 or 0 when the letter is an uppercase
* @c: int
* Return: int
*/
int _isupper(int c)
{
if ((c >= 'A') && (c <= 'Z'))
{
return (1);
}
return (0);
}
| [
"nicollemunar@gmail.com"
] | nicollemunar@gmail.com |
bde64e60cf82b892ed437d0806743f5a7fe3240e | 2dbea1ba129fd63ed9365355e0e21782fd876412 | /natrual3.c | e2a685d7c64f999889c8868f328393ee647caeb5 | [] | no_license | rkuczer/comp350 | 1715b497a3f300ed06c55604aacb2a58ab6cb922 | 28554049f418b0cc0569973529b5215af1dff19b | refs/heads/main | 2023-08-24T13:44:50.959399 | 2021-10-21T15:28:21 | 2021-10-21T15:28:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 945 | c | #include <stdio.h>
void sum(int n, int*answer) /*initializes the sum function to be used with direct console input*/
{
int inc, total; /*initializes variables for natrual number summation*/
total=0;
/* printf("Enter a positive integer: ");
scanf("%d", &n);*/
inc =1;
while(inc<=n){ /*while loop t... | [
"noreply@github.com"
] | rkuczer.noreply@github.com |
0017743a015c60dce40620a60578a6fa09411476 | 358a318d33574dbd70b73e0281e3229c26b75201 | /exam1.c | 3c6391fcf5c47335e62841f861567a435a207700 | [] | no_license | Taichi-S/parallel-programming-mpi | 5c32a8b38f92313abbac77b6428625dc435ea487 | 7f4b9be1dcbaaa9e6f7ed81a9c99ce69f47d91f9 | refs/heads/master | 2023-04-12T09:13:00.623504 | 2021-05-19T08:02:53 | 2021-05-19T08:02:53 | 365,908,517 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,348 | c | /* 例題1.個のプロセッサを用いた時に,なぜ通信が速くなるか */
/*1から10000までの総和を任意のプロセス数で求めてプロセス0から出力するプログラム(処理時間も出力) */
#include <stdio.h>
#include <mpi.h>
int main(int argc, char **argv){
long long int N = 10000; // 92000(4232046000)~93000の間でMPI_INTでのオーバーフローが起きている.
long long int sum = 0;
long long int all_sum, i;
int rank, s... | [
"sta10129@gmail.com"
] | sta10129@gmail.com |
257decb11edb4bbda65e3de753d2c14aa81cd3df | ae58d3eff26b48262a2f255ae16e7c6c13a9e566 | /POCs/cvdParser.c | 08fb87cb0b3842d2238052cd8d36d7a496b08001 | [] | no_license | debojyoti-majumder/CompCoding | 1e3a85dd0f304af70ceba07165e65cd0021db686 | 2128d3da1cf42efc15cd1655b175083924690687 | refs/heads/master | 2023-03-31T06:34:57.090665 | 2023-03-22T08:41:52 | 2023-03-22T08:41:52 | 67,579,712 | 3 | 0 | null | 2020-10-13T15:49:03 | 2016-09-07T06:44:20 | C++ | UTF-8 | C | false | false | 1,398 | c | #include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <zlib.h>
#include <memory.h>
#define BLOCK_SIZE 512
int main(int argc, char** argv) {
int fileDescripor;
gzFile zipedSignatureFile;
int lineCounter = 0;
char buffer[BLOCK_SIZE];
char osi... | [
"noreply@github.com"
] | debojyoti-majumder.noreply@github.com |
965027a7f3b7f3ba3f406c9b63f715f82e355907 | 6ec314ace7351b75cca5464f393545e1218c4612 | /Lab 1/tests.c | 7b2b3ddd6f6d63eef51182ee60fe0b3f9092e2e8 | [] | no_license | ProstoMimoProhodill/2semHomework | 1f1670ce3029fe797fe84da52681b8304473b1b4 | ef2fee9cdb31258c5cae40b3bc051370ea8d5e92 | refs/heads/master | 2021-01-24T01:41:29.383857 | 2018-06-22T08:43:59 | 2018-06-22T08:43:59 | 122,819,692 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,242 | c | #include "util.h"
#include "tests.h"
#include "interface.h"
#include "polynomialList.h"
#include "polynomialDynamicArray.h"
#include <stdio.h>
#include <stdlib.h>
struct Polynomial
{
void *data;
type dataType;
int n;
};
struct Scalar
{
void *scalarData;
type scalarType;
};
void testInputPolynom... | [
"keshe4k@yandex.ru"
] | keshe4k@yandex.ru |
cddb2e696a3d8698bb5e2159721d98c94a1206d5 | c52bf4ec52bb11d8a2a913412ec0aedb5748f888 | /tek1/prog_elem/bistro/bistro/source/del_in_list.c | 4e9eea0dcdd66c0e37d46a3e3a311b81403e2b0b | [] | no_license | platelk/project | 5f8e1a155bac7f7f9b65a27c668cbfc9d06a3b0f | 53eda72963f667e2c07d741ba0b03b8bec5926cf | refs/heads/master | 2021-01-18T22:34:53.703760 | 2016-05-10T14:45:57 | 2016-05-10T14:45:57 | 13,128,086 | 2 | 6 | null | null | null | null | UTF-8 | C | false | false | 634 | c | /*
** del_in_list.c for del_in_list in /home/platel_k/projet/bistro
**
** Made by kevin platel
** Login <platel_k@epitech.net>
**
** Started on Tue Nov 1 11:05:59 2011 kevin platel
** Last update Fri Nov 4 10:21:42 2011 matthieu przybylski
*/
#include <stdlib.h>
#include "list.h"
#include "bistromathique.h"
t_... | [
"kevin.platel@epitech.eu"
] | kevin.platel@epitech.eu |
a73be5895723845c400702345c1ddbad62986daf | b0cd6deffa8422d8c596f86f3efd1b58299d645d | /libft/ft_str_is_alpha.c | b25bf6c1db9890eacd9ae3937ac064f500c59ac4 | [] | no_license | skyformat99/printftmp | 2af62655b5cf87b896bb385edf180ab7428948ab | 088b457d48199e2846319adf26034d53afe22af6 | refs/heads/master | 2021-08-22T04:51:29.047296 | 2017-11-29T10:13:17 | 2017-11-29T10:13:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 984 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_alpha.c :+: :+: :+: ... | [
"joseph0priou@gmail.com"
] | joseph0priou@gmail.com |
776744939601ef382bb5369412e2a8921d7602e2 | b1c0a1117a62d5f049e189e041aa19a914be6dbd | /extra/bitmixing/linearinverse.c | 5511ce04eef70361b03b3c99582036ab2255d4a2 | [
"LicenseRef-scancode-public-domain"
] | permissive | lemire/Code-used-on-Daniel-Lemire-s-blog | 847451d3acbeb28a6a6d50c6686eb537a6fdff41 | c13fe68cdec26d45f688b5c58245fb428dc2ddb9 | refs/heads/master | 2023-08-31T09:55:12.275811 | 2023-08-31T00:33:59 | 2023-08-31T00:33:59 | 3,945,414 | 729 | 194 | null | 2023-09-04T07:50:21 | 2012-04-06T00:13:02 | C | UTF-8 | C | false | false | 7,865 | c | // gcc -O3 -o linearinverse linearinverse.c -Wall -Wextra -march=native
#include <assert.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <stdio.h>
#include <memory.h>
#include <stdlib.h>
enum {w = 4};
const uint64_t MAX = UINT64_C(1) << w;
const uint64_t MAX2 = UINT64_C(1) << (2 * w);
const u... | [
"lemire@gmail.com"
] | lemire@gmail.com |
d4d0669ce00c882693d0325393d9bb1f1da49a9c | 9d72ff71dd0b6b9cc50bbf32c56dfad104ffea30 | /hw4/homework.c | 63e1fdc404a9b974911fa05d65864b5ff68bd007 | [] | no_license | crownwcg/CS5600 | c4d91b2cc8eb60bac39efe1a35f466909a8cf3a3 | 3d582b848c54b2abc63cf1058bdf2aa0c4183403 | refs/heads/master | 2021-04-03T09:50:46.245585 | 2019-03-30T16:24:38 | 2019-03-30T16:24:38 | 124,347,216 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 36,589 | c | /*
* file: homework.c
* description: skeleton file for CS 5600/7600 file system
*
* CS 5600, Computer Systems, Northeastern CCIS
* Peter Desnoyers, November 2016
*/
#define FUSE_USE_VERSION 27
#define _GNU_SOURCE
#include <stdlib.h>
#include <stddef.h>
#include <unistd.h>
#include <fuse.h>
#include <fcnt... | [
"crownwcg@hotmail.com"
] | crownwcg@hotmail.com |
7e107dfc3f511171f3e1efb264b1f954a3032b41 | ac73666c5d6bdf146952316025f1a273c1e5c863 | /core/tokens.h | 59368ccb81ffe4bae8daba21dc3a938208958e11 | [] | no_license | hejoin/TinyBasic | 5685aed90f8417d8760e59c15bc52c4d7bb1d902 | 19cc2381b4c35a08de3dc504dd664a7a36070a70 | refs/heads/master | 2020-05-29T22:21:19.907308 | 2017-12-30T06:17:57 | 2017-12-30T06:17:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 967 | h | #ifndef __TOKENS_H_
#define __TOKENS_H_
#define TT_NONE 0x00
#define TT_ERROR 0x01
#define TT_NUMBER 0x10
#define TT_NAME 0x20
#define TT_COMMAND 0x21
#define TT_VARIABLE 0x22
#define TT_FUNCTION 0x23
#define TT_SYMBOL 0x30
#define TT_FUNC_END 0x31
#define TT_SEPARATOR 0x32
#define TT_ARRAY 0x33
#define TT_LITERAL 0x4... | [
"rodiongork@github.com"
] | rodiongork@github.com |
62b9b15723cd690b836bb0c382416b114ecac666 | 9e15b01842d8569a226b218a6d58dc4c04cfdc0d | /Assignment_11911077/2_bubbleSort.c | 6cffa206d11a4139b4c828d62a0e3f65c6f34734 | [] | no_license | xenacro/SemTwo | 11093c56f298b868ed78aa3d4ec0e963b7e3f249 | 42c2eb1bac6ad6df4d2a82fa2ab22d1b09875fdb | refs/heads/master | 2022-11-26T03:21:16.770935 | 2020-07-30T17:01:04 | 2020-07-30T17:01:04 | 283,826,037 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 565 | c | #include <stdio.h>
void swap(int *xp, int *yp)
{
int temp = *xp;
*xp = *yp;
*yp = temp;
}
void bubbleSort(int arr[], int n)
{
int i, j;
for (i = 0; i < n-1; i++)
for (j = 0; j < n-i-1; j++)
if (arr[j] > arr[j+1])
swap(&arr[j], &arr[j+1]);
}
void pri... | [
"noreply@github.com"
] | xenacro.noreply@github.com |
1905bdcb0cc2cc2d674208ddd8e02cb96eb492cc | 01a773bdd90555f16c2cdbdd6fcce5f0faece4e3 | /tools.c | b247aec1705f51157d42bb83c85bc99615a97ea6 | [] | no_license | schevall/ft_ls | 70f6a8273bb559a567143ec570a68f53972a3a06 | 716522a1c3302f7f3b85db8e557d7396747fad0f | refs/heads/master | 2021-01-19T09:05:20.164483 | 2017-02-15T17:09:56 | 2017-02-15T17:09:56 | 82,085,390 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,822 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* tools.c :+: :+: :+: ... | [
"schevall@e1r10p15.42.fr"
] | schevall@e1r10p15.42.fr |
233a04551d6b79213cb4fc8d2f2c9cfce4ebff6d | 75043b53118deb635c8d076c2a66da341db64d16 | /day1/hands-on/matmul/matmul.c | d4411f550f98377b4447d0d094613f87821672cb | [] | no_license | kma/hpc-school2019 | b772d4869807b56f478a30575bd70994d248caf5 | 30b98dcf9e6fcee514500ca4d6d5e2241b9e4542 | refs/heads/master | 2020-12-08T18:43:14.484038 | 2019-12-12T20:26:23 | 2019-12-12T20:26:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,588 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include "mkl.h"
#define SIZE 12000
double seconds(){
struct timeval tmp;
double sec;
gettimeofday( &tmp, (struct timezone *)0 );
sec = tmp.tv_sec + ((double)tmp.tv_usec)/1000000.0;
return sec;
}
int main(int argc, char **ar... | [
"igirotto@ictp.it"
] | igirotto@ictp.it |
d3fe784495a46a6a07fd9e7f68e3af7216e5718b | 089f57a9c7c8d8beb28b800b51e4d5a10638e259 | /ft_memchr.c | 07bd25fbebba8938a6b669578f904f56c33624ca | [] | no_license | Lanhir/libft | f43ee72b96553b31db6b673427f0eac8dd0acf32 | 6eecc9d17650649e9ee3b08923e0ce3a9273ed65 | refs/heads/master | 2020-04-07T11:42:46.658754 | 2018-11-20T05:57:15 | 2018-11-20T05:57:15 | 158,337,690 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,153 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: ... | [
"malibert@w-r10-p3.s19.be"
] | malibert@w-r10-p3.s19.be |
37d5c2c79a64c0b563c4682fbb6886d76b15c6d4 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/fastsocket/kernel/drivers/media/video/extr_wm8739.c_wm8739_write.c | 88941688e053ab65a4ce2355d84ca3bfcce94d15 | [] | 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 | 1,340 | 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 |
02e3b9bfab68e95cc33a6d92d04318ee18d8a8a3 | 0949e4ad26a4753276ef8e27fb05953f29758ad7 | /blinds/codes.h | 84868567545e1807c24c2c4b03335ab0cfb81dfb | [] | no_license | Andrewt12/libcbus-demos | 3cec83badf6fe86dd2c95bb5c234c8b4cb724ca8 | 935936ef1f7a20c1972bd0144fd5422896f8e0fd | refs/heads/master | 2021-04-18T22:57:26.063167 | 2017-06-17T01:07:19 | 2017-06-17T01:07:19 | 94,589,793 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 38,229 | h | #ifndef CODES_H
#define CODES_H
//1245
int upch1 [] = {411, 267, 412, 262, 401, 262, 400, 263, 401, 268, 400, 268, 400, 263, 400, 263, 400, 265, 403, 266, 399, 269, 399, 269, 400, 267, 401, 266, 401, 267, 401, 266, 402, 266, 402, 265, 399, 262, 400, 263, 399, 262, 398, 263, 399, 263, 398, 263, 399, 268, 398, 268, 399,... | [
"andytara12@gmail.com"
] | andytara12@gmail.com |
c5b016e5ab572de5f39c7503cc459bfdd59b1834 | e38be39cf4367248a1a8c59ea5606060b60ebe29 | /phoIDstudy/batch/jobs/2020_08_07/promptDR0p1DPt0p1/GJetsDR0p4HT200To400TuneCP513TeVmadgraphMLMpythia8v2/GJetsDR0p4HT200To400TuneCP513TeVmadgraphMLMpythia8v2_049.C | 60297dbd07a6721fd92290d0a8fb15877b08511f | [] | no_license | wvieri/antgc_analysis | c7aae67746d0dbc25af647f24af193d6a3b76e47 | 6211c59bae108d01402c043e86534360688d90c4 | refs/heads/master | 2022-12-21T02:52:54.523073 | 2020-10-02T05:55:18 | 2020-10-02T05:55:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,600 | c | #include "/data/cmszfs1/user/wadud/aNTGCmet/aNTGC_analysis_skim/phoID/2020_08_07/promptDR0p1DPt0p1//GJetsDR0p4HT200To400TuneCP513TeVmadgraphMLMpythia8v2//genPhoMatcher.cc"
void GJetsDR0p4HT200To400TuneCP513TeVmadgraphMLMpythia8v2_049(){
std::cout<<getCurrentTime()<<std::endl;
std::cout<<"Begin root macro..."<<std::e... | [
"abrar.discloses@gmail.com"
] | abrar.discloses@gmail.com |
fbc5f32baf6cf2a4e9df59cbfc4eef806b989c1d | 06e0dacef819a57e0677b91d5035c61c3cf3884e | /Windows/Eudora71/DirectoryServices/Ph/inc/private.h | b493403948f1ce6537fab784b831ec2bc33a1d5c | [
"MIT"
] | permissive | rafsanofficial/EUDORA | ca57ec9f9d2e273b3521254fc636adbc8e4c51c6 | bf43221f5663ec2338aaf90710a89d1490b92ed2 | refs/heads/master | 2023-07-13T20:58:53.434990 | 2021-08-20T11:30:32 | 2021-08-20T11:30:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,887 | h | /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
File: private.h
Description: Private interface for the config object for PH protocol server
Date: 8/11/97
Version: 1.0
Module: PH.DLL (PH protocol directory service object)
Notice: Copyright 1997 Qualcomm Inc. All R... | [
"andrafsan@gmail.com"
] | andrafsan@gmail.com |
e186eda56c04b9f1ea28958d9fe384b7149ec51c | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/UnityEngine_UnityEngine_Events_CachedInvokableCall_1_gen_786.h | 891d0a65f4104591b18ef1569e008dcc36f69c00 | [] | no_license | Klanly/TutorialPackageClient | 6f889e96c40ab13c97d107708ae8f3c71a484301 | b9d61ba2f287c491c9565b432f852980ec3fee28 | refs/heads/master | 2020-12-03T01:42:35.256114 | 2016-11-01T02:40:21 | 2016-11-01T02:40:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 438 | h | #pragma once
#include <stdint.h>
// System.Object[]
struct ObjectU5BU5D_t142;
// UnityEngine.Events.InvokableCall`1<FastBloom>
#include "UnityEngine_UnityEngine_Events_InvokableCall_1_gen_782.h"
// UnityEngine.Events.CachedInvokableCall`1<FastBloom>
struct CachedInvokableCall_1_t23049 : public InvokableCall_1_t23050
... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
ac3f16fbdbdb6bf0238b11aa5c4c97a5f7676367 | a3df3cc64ba3b15bc4dfd1a52e254e7a03e46649 | /vm/vm/src/jump_function.c | 122eea92fa59cd3e7f00e736f8eeb0c2c4eb4dd0 | [] | no_license | rhohls/corewar | eb976b936d28894b6715600ee2fc363144d8601b | 7cdd5b14fd12f60560de3c4a02989622946b7421 | refs/heads/master | 2020-04-04T19:12:33.657398 | 2018-11-06T08:25:26 | 2018-11-06T08:25:26 | 156,196,422 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,048 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* jump_function.c :+: :+: :+: ... | [
"rhohls@e4r14p8.wethinkcode.co.za"
] | rhohls@e4r14p8.wethinkcode.co.za |
8155f669916f47c144bf59bf419976d768088afd | 411a71f112bf7ab06c152357ef3dbd5f127e4f7a | /9/gui.c | f49d47ebb543a507e6d363622be0662002113ba0 | [] | no_license | Shahriar9000/Lab_Assignments_with_C | 608322b994c875eab555189bfafa108262cc94c0 | 7dfca28f686a12b382ba6e7eb991bb063b35d488 | refs/heads/master | 2020-06-01T06:18:49.968368 | 2019-06-07T07:37:02 | 2019-06-07T07:37:02 | 190,675,375 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,928 | c | /* gui.c - a very simple GUI interface that wraps FreeGLUT.
(C) Richard Vaughan 2015
*/
#include <GL/freeglut.h>
#include "gui.h"
/* -- GUI FUNCTIONS ---------------------------------------*/
void gui_init( int argc,
char** argv,
unsigned int width,
unsigned int height,
void (... | [
"marefin@asb9838-1u-a01.csil.sfu.ca"
] | marefin@asb9838-1u-a01.csil.sfu.ca |
c836cbfe33a9f626ee83f6ee00d0d29f46ad7ce6 | 137b2c3ec0e93891cce799258d3195c3d5efc15f | /C/WiMAX_SNMP_App/util/Ipc.h | 11e1c598ab06a83b7d68e9a841798baae4206dfb | [] | no_license | TaburisSAMA/lynproject | 81582253466909e476ad7ee74dc9f59481757091 | 3707e611e87173d4ad43878383407a8a4bfdbad0 | refs/heads/master | 2021-01-21T13:49:01.000403 | 2015-02-27T10:29:33 | 2015-02-27T10:29:33 | 31,414,440 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 926 | h | #ifndef IPC_H_
#define IPC_H_
#include "DataTypes.h"
#define MSGQ_PATH_FOR_WIMAX_SNMP_AGENT "/bin/agent_wimax"
#define PACKET_SIZE 1024
struct struct_message {
long vL_messageType;
s8 aS8_message[PACKET_SIZE];
};
s32 fS32_getPermission(s32 vS32Fp_readPerm, s32 vS32Fp_writePerm);
s32 fS32_getMsgQID(s8 *pvS8Fp_pa... | [
"taburissama@gmail.com"
] | taburissama@gmail.com |
1524fe19d1c758441aae265f8fa212025438cabf | ff7e0a0baf1a68bf2937c38574dade72c5a89879 | /AWLive-master/clibs/libaw/pushStream/rtmp/aw_streamer.c | 4d1ca3cb6ac58fa2f5465a90f942c2602bcaa71c | [
"Apache-2.0"
] | permissive | xiaoheziQH/Video-Encode-Decode-Related | 7e0c0330ab06adf8979e81fd3fd2f7466ca8da9b | 1720615bcdd6f21cc31319b3ce7339b8a71e4047 | refs/heads/master | 2021-10-07T20:26:23.994745 | 2018-12-05T04:52:39 | 2018-12-05T04:52:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,255 | c | /*
copyright 2016 wanghongyu.
The project page:https://github.com/hardman/AWLive
My blog page: http://blog.csdn.net/hard_man/
*/
#include "aw_streamer.h"
#include "aw_utils.h"
#include "aw_rtmp.h"
#include "aw_encode_flv.h"
#include <unistd.h>
#include <inttypes.h>
#include "aw_thread_poll.h"
#include "aw_array.h"... | [
"wanjian@a8sport.com"
] | wanjian@a8sport.com |
eebbf1a2c5319112218bd5454c99b4e7de730130 | 3d4a190bd9ef8dc01874678c93b879b0c7e0d26b | /3rdparty/genFiles/NS-PmaxList-r10.c | 8a950d1803fc1a36d4740d68f1483f2a86ca4c0e | [] | no_license | ariepodga/RRC | 860b1fc874a863b067dac5f90f5f9ed5f1e9e567 | 67642a455a1e95b8532bcfed2fd75bc8152e3dab | refs/heads/master | 2020-12-15T16:20:48.309960 | 2020-01-13T17:26:50 | 2020-01-13T17:26:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,611 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "../asnFiles/36331-f60-ASNfunctions.asn"
* `asn1c -fcompound-names -fincludes-quoted -fno-include-deps -findirect-choice -gen-PER -no-gen-OER -D.`
*/
#include "NS-PmaxList-r10.h"
#include "NS-PmaxVa... | [
"aa7133@att.com"
] | aa7133@att.com |
a9aedb9359acca6de62b348636db02e8fce5b948 | 6a947fcb5aa8e41a59bbd8b32cc77cd9ac71770f | /utils/SCoPE-v1.1.5_64/scope/rtos/api/posix/uc_mqueue.h | 21fe5fbf49711dcc0796ca84df3b4bfee5c0bd8a | [] | no_license | nandohca/kista | 178c17c3c96941b105ef598cdf2b33435ef4c840 | 08130a4f5aab3bed19d14e4a8a7884c963e135de | refs/heads/master | 2020-05-22T04:27:45.578454 | 2016-07-06T09:46:48 | 2016-07-06T09:46:48 | 21,354,325 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,073 | h | //==========================================================================
// uc_mqueue.h
// Author: David Quijano, Juan Castillo, Héctor Posadas
// Date: mar ene 15 2008
// Description:
//==========================================================================
// The following code is derived, directly or indirec... | [
"nandohca@yahoo.es"
] | nandohca@yahoo.es |
a2fe8c497c0a8f6c0335ca3ff4d0fe04eb8207b8 | ff08a16a7fac7a2306df3f829a5531294c76c1bd | /lib/my/strings/my_strtok.c | 75b210a12c2e071957d9fe4d1ccef486a35f5a3d | [
"MIT"
] | permissive | smbss1/PSU_navy_2019 | ee6c9d7f91c80c3d4a206d80b6f36433b3919a82 | a0789d7aa31508abed32c1aee7e183ec7d6f968e | refs/heads/master | 2021-01-03T15:15:39.006050 | 2020-02-19T20:42:13 | 2020-02-19T20:42:13 | 240,127,915 | 0 | 0 | MIT | 2020-02-17T14:08:51 | 2020-02-12T22:25:02 | C | UTF-8 | C | false | false | 1,259 | c | /*
** EPITECH PROJECT, 2019
** my_strtok
** File description:
** Parse
*/
#include <stdlib.h>
#include "my.h"
char *str_tok_func(char *s, const char *delim, char **save_ptr);
size_t my_strspn(const char *cs, const char *ct)
{
size_t n;
const char *p;
for (n = 0; *cs; cs++, n++) {
for (p = ct; *p ... | [
"besseausamuel@pop-os.localdomain"
] | besseausamuel@pop-os.localdomain |
15c6bf965eb0a32e5337554e5aab34c2b0520549 | 202bbc35b672ebda80f7295a7793995d5d877206 | /ScubaSteve/Builds/IOS/Classes/Native/AssemblyU2DCSharpU2Dfirstpass_UnityEngine_UnityDictionary_2__4.h | 0eed4cd0226028d4224601d8181df5de27270f7a | [] | no_license | gohun04/ScubaSteve | c2388d677c77b374fccb62c0e8cce4740d06ca50 | 2428e54e97238f48f67652a8dd982e1f6821e7e0 | refs/heads/master | 2021-01-01T16:00:07.055501 | 2015-04-25T09:07:26 | 2015-04-25T09:07:26 | 34,557,070 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,365 | h | #pragma once
// System.Converter`2<UnityEngine.UnityKeyValuePair`2<System.Object,System.Object>,System.Object>
struct Converter_2_t2860;
// System.Converter`2<UnityEngine.UnityKeyValuePair`2<System.Object,System.Object>,System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Converter_2_t2861;
/... | [
"jacobpipers@msn.com"
] | jacobpipers@msn.com |
0f109b7be02c25b28307f0b84ef5f76c5068704d | 639dcc48a4339f41f49f6d9743c848b8ade0cc57 | /stmCD/实验例程-Example/uCOS_for_LandTiger(IAR)/BSP/bsp_int.c | e899bc086309749966fa35d7e1e2690b3abb511c | [] | no_license | AliRezaeeProjects/micro | 852b80a721c79da6c50f2818b0ef191a1e8705b9 | 2b99bdd3c374f4095865cba834b44fd4043aabf9 | refs/heads/master | 2022-09-25T09:30:56.023657 | 2017-06-04T03:02:05 | 2017-06-04T03:02:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,619 | c | /*
*********************************************************************************************************
* MICIRUM BOARD SUPPORT PACKAGE
*
* (c) Copyright 2007-2008; Micrium, Inc.; Weston, FL
*
* All rights reserved. Protected b... | [
"zootboysean@gmail.com"
] | zootboysean@gmail.com |
cda1cef443779bb0045041991d6583f7e909f5b1 | ae90b21a75bcada2db96474f5624d73291459487 | /RRS_Transmitter/out/WLANT/LIBS/GSL/include/gsl/gsl_sort_ushort.h | 41a4c7f0f9f7b86213900ddde7e98beb449a01a3 | [] | no_license | Elizarspbspb/RRFI | c8f5803cfb76b99b460f81855916065f32bae06b | 827b3eeaddea1dda9a14137b87ea47ba11a929bf | refs/heads/master | 2023-07-11T06:24:28.333827 | 2021-08-13T16:04:02 | 2021-08-13T16:04:02 | 394,362,396 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,987 | h | /* sort/gsl_sort_ushort.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough
*
* 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 Software Foundation; either version 2 of the Licens... | [
"valera81368@mail.ru"
] | valera81368@mail.ru |
2ad192d756e64ed6d4eac11f08440ff3994de73a | 796012fcc7f0ef44aa35cd0ce820304e17464188 | /C/Data_Structure_and_Algorithm/day02/ex07/printYoungest.c | d5e5f787ad9a107eea3ceb25f0aacb0e6e666985 | [] | no_license | jding05/interview_prep | b162eac2018f5b2a336eb5758d8d08cc696cc388 | bf9ac431b4e79b38df3f6c939720eda6db287318 | refs/heads/master | 2020-05-31T03:15:21.610573 | 2019-07-30T15:17:10 | 2019-07-30T15:17:10 | 190,078,807 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 599 | c | #include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include "header.h"
// divide and conquer
// split to smallest one element and compare
int findMin(int *ages, int left, int right)
{
if (left == right)
return (ages[left]);
int mid = left + (right - left)/2;
int lef... | [
"jeffding05@gmail.com"
] | jeffding05@gmail.com |
5892193d41ea2c03ea670fb24f24d86868315be2 | 88caf39d267ff5a00c6561ffc35fdb456eaddadc | /Theme2/Practica2/busquedaLInealC.c | 32dcbbbdb1adf0046bed42308af769b33a5bd0d2 | [] | no_license | JoseJuanSE/Algorithm_Analysis | 1794e15a9f630500932fab937a0c7e896d291423 | 08585b452d6e51267920115963ab3ea85cb11a9e | refs/heads/master | 2023-09-06T03:24:34.455310 | 2021-11-17T07:07:09 | 2021-11-17T07:07:09 | 400,347,315 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,087 | c | #include <stdio.h>
#include <stdlib.h>
/*
------ Algoritmo de Búsqueda Lineal ------
Descripción: El algoritmo realizará una búsqueda de un número dado sobre un arreglo compuesto de números desordenados
donde se comparará con cada elemento del arreglo hasta encontrarlo, o en caso de que no lo encuentre, ... | [
"jojusuarez46@gmail.com"
] | jojusuarez46@gmail.com |
e8e559c7830f4648fd2fde2906964fd5df740ce4 | 719675b0fe496716f5a61665d21b21a0e89550ae | /LSO_Project/substratum_server.c | 43be414c3570ef3c213a3e90cacc0f2fe249af38 | [] | no_license | marcofio21/LSO_Project | cd69328c23decf2b1de1504398d1815dc47881ae | a79f4a72cc1684bb1dc3bd5d8b7ad72e6a64737d | refs/heads/master | 2020-04-09T00:09:07.898513 | 2019-01-16T16:46:16 | 2019-01-16T16:46:16 | 159,855,078 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,366 | c | #include "substratum_server.h"
int dim_buf_err = 128;
char *buf_err;
int checked_p_range_input(char *input_string, int a, int b){
char string[64];
char *buf_err = malloc(64 * sizeof(char));
int input;
int i;
int exp;
int temp_conv;
int flag_err;
while(1){
input = 0;
... | [
"noreply@github.com"
] | marcofio21.noreply@github.com |
81c061d7f74f84deb29115247bd2747f319909a6 | b9464d05cfd1c08259c5d9afee1ffbde63c9df40 | /c3/test/opena.c | 20d66e6d2f58c76cb11b12a06a42fd213dce9344 | [] | no_license | n6il/toolshed | 1bbf9a8a3aefecc644204fde04c356892c80a369 | ab6fef5d98faa12ddaaa3bdecb77bbed33d36134 | refs/heads/master | 2023-08-10T23:12:56.446459 | 2023-07-29T15:05:47 | 2023-07-29T15:05:47 | 220,066,353 | 6 | 5 | null | 2023-07-29T15:01:42 | 2019-11-06T18:45:32 | C | UTF-8 | C | false | false | 505 | c | /* Test: writea.c
Simple test of the write() system call.
*/
#define os9in 0
#define os9out 1
#define os9err 2
int main(argc,argv)
int argc;
char **argv;
{
char *string = "/dd/startup\n";
char buf[4];
int path, result;
path = open( string, 1 );
if( path == -1 )
return 10;
result = read( path, buf, 1 ... | [
"coco@toughmac.com"
] | coco@toughmac.com |
9263a70c668675093b97b362766f80750a8c6636 | f852bc8fa953fd5ce8799f29d4fee6bfcd8e4197 | /drivers/usb/misc/iowarrior.c | 2ef9483d23bf63be6674dbb3feceefaaf9d384fd | [] | no_license | anewkirk/AJK | fcbeb60ad92fb932aa9570ee69ea70622208ed54 | 8c002e5a715451fe4ad94806f103c03783d7b154 | refs/heads/master | 2016-09-06T10:30:03.779475 | 2013-08-13T19:38:13 | 2013-08-13T19:38:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 26,141 | c | /*
* Native support for the I/O-Warrior USB devices
*
* Copyright (c) 2003-2005 Code Mercenaries GmbH
* written by Christian Lucht <lucht@codemercs.com>
*
* based on
* usb-skeleton.c by Greg Kroah-Hartman <greg@kroah.com>
* brlvger.c by Stephane Dalton <sdalton@videotron.ca>
* and St�hane D... | [
"root@DevDistro.(none)"
] | root@DevDistro.(none) |
c67ab5dccbb7441bdff17fb161777b4365208686 | 1a175092cb440a54bf0c629d998583a4a43dd7a9 | /proj/src/rtc_macros.h | f7236c260c1c96987a6cbe7440be35e8068186a3 | [] | no_license | fabiomoreira13/LCOM | 1c4a0e88f144820fab631cfe94b377c6f1ccaf01 | 1b58b9b7f9f28f52b807e38eb74ddf5c3c633556 | refs/heads/master | 2022-04-10T07:49:45.937730 | 2020-03-07T13:25:28 | 2020-03-07T13:25:28 | 225,458,176 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 400 | h | //
// Created by Fabio on 12/12/2019.
//
#ifndef PROJ_RTC_MACROS_H
#define PROJ_RTC_MACROS_H
#define RTC_IRQ 8
#define ADDR_REG 0x70
#define DATA_REG 0x71
#define REGISTER_A 10
#define REGISTER_B 11
#define REGISTER_C 12
#define SECONDS_REG 0
#define MINUTES_REG 2
#define HOURS_REG 4
#define DAY_RE... | [
"moreira.fbio8@gmail.com"
] | moreira.fbio8@gmail.com |
6785c9a7a19570639c7efd8af88b6123b17a6b2c | c2cedcf36667730f558ab354bea4505b616c90d2 | /players/vertebraker/cont/frostgard/423.c | b10fe950719a75000a43b27b8e456e09f5be615c | [] | no_license | wugouzi/Nirvlp312mudlib | 965ed876c7080ab00e28c5d8cd5ea9fc9e46258f | 616cad7472279cc97c9693f893940f5336916ff8 | refs/heads/master | 2023-03-16T03:45:05.510851 | 2017-09-21T17:05:00 | 2017-09-21T17:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,369 | c | #include <ansi.h>
#define RNUM 423
inherit "players/vertebraker/cont/inherit/fgard_room";
string rtype;
reset(arg){
::reset(arg);
if(arg) return;
short_desc = "an ice sheet";
set_light(1);
rtype = "ice sheet";
long_desc =
" [36m#[0m [1;36m@[0m [1;36m@[0m [1;36m@[0m [36m#[0m [36m#[0m... | [
"rump.nirv@gmail.com"
] | rump.nirv@gmail.com |
4053b7617d3c77ae28715610cd969a3834d9a357 | 69647657311f3db5350fe760c5574f345119f48f | /branches/r0/comp/clang/test/Driver/cl-options.c | 135a0efdd5db8f5dc58a68f1bd0d9c3140efa203 | [
"NCSA"
] | permissive | beefeather/clear-sources-cpp-roger | f6405f30d1f44e891f0c89ff6c8f76eec8e20942 | 1746ca79d20ae586f5f0bfc5e71f9ebda381f5d9 | refs/heads/master | 2021-01-10T13:22:42.245703 | 2016-01-24T05:40:42 | 2016-01-24T05:40:42 | 50,273,574 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,917 | c | // Don't attempt slash switches on msys bash.
// REQUIRES: shell-preserves-root
// Note: %s must be preceded by --, otherwise it may be interpreted as a
// command-line option, e.g. on Mac where %s is commonly under /Users.
// Alias options:
// RUN: %clang_cl /c -### -- %s 2>&1 | FileCheck -check-prefix=C %s
// C: ... | [
"beefeather@yandex-team.ru"
] | beefeather@yandex-team.ru |
9aea54d2ddf3ffa7a5fc0d4d47ba26ca6db74a88 | a6443b2899b2bd3df49fd2e9111b2f1fc248afb4 | /dpdk-17.02/drivers/net/qede/qede_ethdev.c | 9242a7d2a5516be5065ab0f1ffa9dc6b5adfe87d | [
"BSD-3-Clause",
"BSD-2-Clause",
"MIT",
"LGPL-2.1-only",
"GPL-2.0-only"
] | permissive | idtek/kdns | f23b5c8f4bfb041a73c91ad64665abc912aa54c0 | f809c3b7f0cc01fb54d8b852068eac02d02aa73b | refs/heads/master | 2023-08-03T08:53:29.182234 | 2023-07-24T06:00:50 | 2023-07-24T06:00:50 | 246,453,984 | 0 | 0 | MIT | 2020-03-11T02:17:04 | 2020-03-11T02:17:04 | null | UTF-8 | C | false | false | 68,212 | c | /*
* Copyright (c) 2016 QLogic Corporation.
* All rights reserved.
* www.qlogic.com
*
* See LICENSE.qede_pmd for copyright and licensing details.
*/
#include "qede_ethdev.h"
#include <rte_alarm.h>
#include <rte_version.h>
/* Globals */
static const struct qed_eth_ops *qed_ops;
static int64_t timer_period = 1;
... | [
"120801192@qq.com"
] | 120801192@qq.com |
a2366d0d3a958ae2209628174d65fdbf8b78d754 | 961234c564180110e57ca85b8471faa03c5636b5 | /C/homework/hagasha/ex40.c | 269b61b14af117a326838a39634bcabdb74b1443 | [] | no_license | awedz/uni | 14c45ca99e0866a62db8cf4654cbe149696bbe5f | 35aa047ae98abe90ffa01ef99408eb9bdab312af | refs/heads/master | 2023-01-11T15:59:16.293421 | 2019-08-06T01:45:09 | 2019-08-06T01:45:09 | 157,736,246 | 0 | 0 | null | 2022-12-09T10:48:41 | 2018-11-15T15:53:20 | HTML | UTF-8 | C | false | false | 708 | c | #include <stdio.h>
#include <string.h>
void PrintByChar(char str[], char printBy);
int main()
{
char str[] = "cat Dragon horse tiger dog dolphin dinosaur dildo";
char print = 'd';
PrintByChar(str, print);
fgetchar();
return 0;
}
void PrintByChar(char str[], char printBy)
{
int i... | [
"="
] | = |
a70f2fc5ebef39bff9c35d379486922a854806a6 | 2a7ccb98cc86393f1e0f2d374f6b7cb124ea7f4f | /struct/1-13.c | 167d65634de692cdc4a1f9e1751d149b09ea0c79 | [] | no_license | 0000000000ps/baekjoon | 76ec6059f6b31e3e271287d2583e5c6ef8020de9 | 69c059f38bcfd312881ea7a1df9f334748bf082f | refs/heads/master | 2023-01-30T10:10:37.672297 | 2020-12-13T07:31:16 | 2020-12-13T07:31:16 | 310,989,520 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 209 | c | #include <stdio.h>
struct student
{
char *no;
char *name;
};
int main(void)
{
struct student stu;
stu.no = "20101323";
stu.name = "Park";
printf("no: %s, name: %s\n", stu.no, stu.name);
return 0;
}
| [
"pancreatique@naver.com"
] | pancreatique@naver.com |
0744872bdf60c6354ddd84b27a9c5e28ca33c6d4 | 3d643e50e304d3ffd3f697905e441556be377cfc | /ios/Pods/Headers/Private/yogaABI35_0_0/ABI35_0_0yoga/ABI35_0_0YGValue.h | c4d30a4e81144dd0211742c11654bcd2a9117587 | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | Qdigital/expo | 326c5c1c0167295c173f2388f078a2f1e73835c9 | 8865a523d754b2332ffb512096da4998c18c9822 | refs/heads/master | 2023-07-07T18:37:39.814195 | 2020-02-18T23:28:20 | 2020-02-18T23:28:20 | 241,549,344 | 1 | 0 | MIT | 2023-07-06T14:55:15 | 2020-02-19T06:28:39 | null | UTF-8 | C | false | false | 97 | h | ../../../../../versioned-react-native/ABI35_0_0/ReactCommon/ABI35_0_0yoga/yoga/ABI35_0_0YGValue.h | [
"tomasz.sapeta@swmansion.com"
] | tomasz.sapeta@swmansion.com |
a31b056a0de7d3c05da8618814b095172cd7fd03 | f1e9fd8e3520ec5d939699fe6c98a9b33ccf3f16 | /day0704-05-Uc/map_file_1.c | d9ae83349146a932ba77d4c020590d45a856f76a | [] | no_license | UgoLi/UNIX_C | 6a832a292537fdf2cb483a56c4ba0e4d2fbefef1 | ad3438b406db214562d5d79c944b47ca4fce7ed3 | refs/heads/master | 2021-09-04T19:19:17.811549 | 2018-01-21T16:49:29 | 2018-01-21T16:49:29 | 118,353,958 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,126 | c | /*************************************************************************
> File Name: map_file_1.c
> Author:UgoLi
> Mail: 2653920896@qq.com
> Created Time: 2017年07月26日 星期三 13时35分06秒
************************************************************************/
#include<stdio.h>
#include<sys/stat.h>
#include<sys/typ... | [
"2653920896@qq.com"
] | 2653920896@qq.com |
1c0ebfda79f1cdc4350c7881386dabc15d6282b4 | 92751cb4574ab88fc4a4b4d27db08cff7150c7f0 | /src/mcmlmain.c | 5b3aa2436e4e747b0ce75b572601299ccac0f99a | [] | no_license | dalerxli/omp-mcml | ea787a2d44d7d7a4410445c9f8c2200f70af0833 | 1b1ccf9d217dd60c42a43a9d4ff7855507a68011 | refs/heads/master | 2020-04-07T21:26:34.566527 | 2017-04-07T12:06:19 | 2017-04-07T12:06:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,045 | c | /***********************************************************
* Copyright Univ. of Texas M.D. Anderson Cancer Center
* 1992.
*
* main program for Monte Carlo simulation of photon
* distribution in multi-layered turbid media.
*
****/
#include "mcml.h"
/* Declare before they are used in main(). */
FILE *GetFile... | [
"mehr.zarei1@gmail.com"
] | mehr.zarei1@gmail.com |
4316cfbf943eab5940c206ce90194a017a09d273 | d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3 | /Modules/ThirdParty/VNL/src/vxl/v3p/netlib/arpack/dgetv0.h | fca0e11c710bff5bd9ef0ff8733d73e11537413a | [
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-warranty-disclaimer",
"SMLNJ",
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference",
"NTP",
"IJG",
"GPL-1.0-... | permissive | nalinimsingh/ITK_4D | 18e8929672df64df58a6446f047e6ec04d3c2616 | 95a2eacaeaffe572889832ef0894239f89e3f303 | refs/heads/master | 2020-03-17T18:58:50.953317 | 2018-10-01T20:46:43 | 2018-10-01T21:21:01 | 133,841,430 | 0 | 0 | Apache-2.0 | 2018-05-17T16:34:54 | 2018-05-17T16:34:53 | null | UTF-8 | C | false | false | 437 | h | extern int v3p_netlib_dgetv0_(
v3p_netlib_integer *ido,
char *bmat,
v3p_netlib_integer *itry,
v3p_netlib_logical *initv,
v3p_netlib_integer *n,
v3p_netlib_integer *j,
v3p_netlib_doublereal *v,
v3p_netlib_integer *ldv,
v3p_netlib_doublereal *resid,
v3p_netlib_doublereal *rnorm,
v3p_netli... | [
"ruizhi@csail.mit.edu"
] | ruizhi@csail.mit.edu |
e177e51349f657b24dac4da48d225b243de1dc73 | 0fa4217b4b644adaae7e04fbda7692154ff7bc6e | /board.h | 3041d2940810d06e8f0cfabce4cdebfa6a171238 | [] | no_license | kennethtxytqw/Parallel-Othellox | b429b96ef524c0221b9040c4ae2544f4de09a286 | b7e687ff43eeffd94043e16cc09456d548c37dca | refs/heads/master | 2021-03-16T06:56:49.859875 | 2017-06-03T09:25:44 | 2017-06-03T09:25:44 | 85,456,233 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 657 | h | #ifndef __BOARD_H__
#define __BOARD_H__
#include "util.h"
uint ** initBoard(int width, int height, int player, char * whiteStrPtr, char * blackStrPtr);
uint** createBoard(int width, int height);
int countFlips(int x, int y, uint ** boardPtr, int player, int width, int height);
void placePiece(uint ** boardPtr, ... | [
"kennethtxytqw@gmail.com"
] | kennethtxytqw@gmail.com |
d3ba7fda1db2f000249cb87b6eff1c48ec185279 | 349f9f19ec48b24d46a4144adb4ccf6862c6c520 | /EPD_Extension_Board/src/EPD_Kit_Tool/Drivers/Uart_Driver.c | 2a2ea3f5d6fa5256c15da0074c9d7e4182d27864 | [] | no_license | coolpay64/EINK | 98ab414d683df761486e5cb3fbfac624d5e4350c | 91ff2f0343a30582dcb024d1370ff4eda7988b85 | refs/heads/master | 2016-09-15T22:16:53.876524 | 2015-01-05T04:15:27 | 2015-01-05T04:15:27 | 28,770,103 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,295 | c | /**
* \file
*
* \brief The functions of UART driver
*
* Copyright (c) 2012-2014 Pervasive Displays Inc. All rights reserved.
*
* Authors: Pervasive Displays Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following condit... | [
"coolpay64@Coolpay64-Tab"
] | coolpay64@Coolpay64-Tab |
7a1de4caf0640ce879718e95a42f5e8dc044e244 | b0bf7998d91f64236654d5bae42171810fe2a98e | /ourproject/Temp/StagingArea/Data/il2cppOutput/t1234.h | 7b3463be7150d6028f958c738b9aca3749578d43 | [] | no_license | starinu/493Project | b91ee6cdd2837fbb86fe4e43cb6b949d0851cfdd | 3906b5292741694685f95a35ae6475ae96831033 | refs/heads/master | 2021-01-10T03:43:20.298633 | 2015-11-21T05:23:07 | 2015-11-21T05:23:07 | 46,602,286 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 262 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
struct t19;
struct t931;
struct t180;
struct t181;
#include "t179.h"
#include "t113.h"
struct t1234 : public t179
{
};
| [
"liuth@0587357572.wireless.umich.net"
] | liuth@0587357572.wireless.umich.net |
2139c6e49e3da2c4aab019f24cafcad37cd0752e | 219e4211506db2f60ca18c7deb2e1505a7e5266c | /底盘/App/HitTask.c | 3ba1cce7c0384a4d8abdc509c4a6486f68a37565 | [] | no_license | markMosquito/teacher-yu | ab5aa5be8cd0873fa488c546a3d299bde6417af8 | 0884d4be4b102a87e95cf26956e381b0ded99b8e | refs/heads/master | 2021-06-06T10:43:18.567255 | 2016-09-17T06:44:22 | 2016-09-17T06:44:22 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 34,417 | c | /**
******************************************************************************
* @file HitTask.c
* @author
* @version V1.0
* @date 7-May-2015
* @brief HitTask
******************************************************************************
*/
/* Includes ------------------------------------... | [
"499334050@qq.com"
] | 499334050@qq.com |
80dfeee6c65e7a549a586164c1080072fad30472 | 1e022bb0108cb7915112faff9c73368689548e12 | /src/lexbor/source/lexbor/dom/interfaces/document.c | 6d0041ead8d560cabf787085524eeb3408efddac | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | itisgrisha/tgnews | a2016c7570451d9b9197c35f946dd2146e976ff5 | 640f4f777c0e2c55e3e7f40471042c85178ab196 | refs/heads/master | 2022-03-13T09:10:40.694829 | 2019-12-02T16:08:53 | 2019-12-02T16:08:53 | 223,560,373 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,272 | c | /*
* Copyright (C) 2018 Alexander Borisov
*
* Author: Alexander Borisov <borisov@lexbor.com>
*/
#include "lexbor/dom/interfaces/document.h"
#include "lexbor/dom/interfaces/element.h"
#include "lexbor/dom/interfaces/text.h"
#include "lexbor/dom/interfaces/document_fragment.h"
#include "lexbor/dom/interfaces/comment... | [
"itisgrisha@gmail.com"
] | itisgrisha@gmail.com |
7ba5c4bb258ee62727758195ffe42d6c8819ba0e | f87e9850ef3b3a6e25d2e60440c14d069ad0132f | /src/main.c | 59d59de74e72afcca6eb27ea68447ebb06051fc0 | [] | no_license | SkirriLEX/IOT | 5df82d9bda5d95a586e839a0063d1a7324a61e51 | 50b7a2ffa28fb085cb7a225b9ed87c2ace91d132 | refs/heads/master | 2021-05-23T15:47:08.332023 | 2020-04-06T01:26:28 | 2020-04-06T01:26:28 | 253,367,033 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,012 | c | #include <stdio.h>
#include "sdkconfig.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
void app_main(void)
{
printf("Hello world!\n");
esp_chip_info_t chip_info;
esp_chip_info(&chip_info);
printf("This is %s chip with %d CPU cores, WiFi%s... | [
"kirk.andri@gmail.com"
] | kirk.andri@gmail.com |
06f3dcf3c0fe8f80b27e61c3b2509c067b874b96 | dfe44688c50737bb4292f268027fd1d8301e75f4 | /include/ceeds/binary_heap.h | 4e68e68606558b8c25cd643efead77319d0b6a40 | [
"MIT"
] | permissive | doom/ceeds | 7195a3b052663a5dbe609bf1a186303b74bb8f1e | 77337d0e109ed27dc4b55b7f3f77f9819d943df3 | refs/heads/master | 2021-07-15T05:40:05.805434 | 2020-06-28T14:27:02 | 2020-06-28T14:27:02 | 180,216,628 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,381 | h | /*
** Created by doom on 27/04/19.
*/
#ifndef CEEDS_BINARY_HEAP_H
#define CEEDS_BINARY_HEAP_H
#include <ceeds/core.h>
#include <ceeds/vector.h>
/**
* Max-Heaps
*/
#define binary_heap_t(n) binary_heap_##n##_t
/**
* Create a binary heap type
*
* @param n the name of the binary... | [
"clement.doumergue@epitech.eu"
] | clement.doumergue@epitech.eu |
9aef4224b11a3dcb73dd262fb2163eb780f7a6dc | 14529b05d39c828bf6e96b8e0bb16ec85bb19557 | /readv.c | d9fd1249e6498c9df6641e967b580a5a2ed77b70 | [] | no_license | rajikak/system | 437a40d72da32fcc430e9be763d04705538852fe | 11e06ceb6818ef45aa0c1bfd98518de132d4d9cd | refs/heads/master | 2022-12-12T18:53:27.857327 | 2022-11-28T02:26:18 | 2022-11-28T02:26:18 | 215,588,393 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,140 | c | /* scatter i/o */
#include <sys/stat.h>
#include <sys/uio.h>
#include <fcntl.h>
#include "hdr.h"
#define STR_SIZE 100
#define IOV_BUF_SIZE 3
int main(){
struct iovec iov[IOV_BUF_SIZE];
struct stat my_strct; /* first buffer */
int x; /* second buffer */
char str[STR_SIZE]; /* third buffer */
ss... | [
"nuwan.kumarasiri@wisc.edu"
] | nuwan.kumarasiri@wisc.edu |
2652fd9af6a68d5d39e8c6a489fa0258cb086f0a | c531aae485e20505b15f1193def133a23c3aff22 | /server_src/include/sata.h | 9f9d49075121c8e8aca433f63e0a06322061ffd3 | [] | no_license | gec258/yard_9_storage | cf1d4c49a1be35623d84f741a27962662b21f118 | ed8dce8e6cceb71b18341a1a881f1ae0127d338e | refs/heads/master | 2020-06-11T11:16:37.972842 | 2019-06-26T16:54:51 | 2019-06-26T17:01:57 | 193,944,494 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,578 | h | #ifndef __TK_SATA_H
#define __TK_SATA_H
#include "err.h"
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <fcntl.h>
#include <err.h>
#include <sys/mman.h>
#include <pthread.h>
#include "libaxidma.h"
#include <string.h>
/*
memory
*/
#define __MM_PATH_ "... | [
"96290506@qq.com"
] | 96290506@qq.com |
b9b9b8b146303d396e32783509f81e6ff5d9a8da | 1ca873e9fa2071b490a1e9c90cbb13e8ba5975ef | /ch29/mylib.c | 53641710cfc43219e45071e6e2faf361b08ee1af | [] | no_license | samuelyao314/PIL4 | ac5f08f30552d98b50daeed34e9e4a33b3a507b5 | 21dc8f020ef1fd2b048fb27a6d46b28d01debb78 | refs/heads/master | 2021-04-16T16:46:52.095384 | 2020-03-23T08:13:02 | 2020-03-23T08:13:02 | 249,370,946 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,586 | c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include "lua.h"
#include "lauxlib.h"
#include "util.h"
// Exercise 29.1
static int l_summation(lua_State *L) {
double s;
int i;
for (i = 1; i <= lua_gettop(L); i++) {
... | [
"samuelyao@tencent.com"
] | samuelyao@tencent.com |
a1765f630f35488df52a1ae966e447e37d863ec6 | 7eaf54a78c9e2117247cb2ab6d3a0c20719ba700 | /SOFTWARE/A64-TERES/linux-a64/drivers/mfd/88pm805.c | 65d7ac099b2065d1945b936d634d2416a78f26cd | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0",
"Linux-syscall-note",
"GPL-2.0-only",
"GPL-1.0-or-later"
] | permissive | OLIMEX/DIY-LAPTOP | ae82f4ee79c641d9aee444db9a75f3f6709afa92 | a3fafd1309135650bab27f5eafc0c32bc3ca74ee | refs/heads/rel3 | 2023-08-04T01:54:19.483792 | 2023-04-03T07:18:12 | 2023-04-03T07:18:12 | 80,094,055 | 507 | 92 | Apache-2.0 | 2023-04-03T07:05:59 | 2017-01-26T07:25:50 | C | UTF-8 | C | false | false | 6,777 | c | /*
* Base driver for Marvell 88PM805
*
* Copyright (C) 2012 Marvell International Ltd.
* Haojian Zhuang <haojian.zhuang@marvell.com>
* Joseph(Yossi) Hanin <yhanin@marvell.com>
* Qiao Zhou <zhouqiao@marvell.com>
*
* This file is subject to the terms and conditions of the GNU General
* Public License. See the fi... | [
"gamishev@gmail.com"
] | gamishev@gmail.com |
e1bb94c030dbd5544895d16ad485ba970f2dac6f | 5f6f683e65e0a4138118c42a6cb795141587f973 | /src/segments/null.c | ccb52328c071223d4165a0c6be139df477ec1fad | [
"Zlib",
"DOC",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | jomael/libmixed | 31f46144efa7836edc50b389581ae688df3fc0da | a60bbb14eddb1196d0712e5f80b16388ade6ae2d | refs/heads/master | 2021-11-21T08:07:49.736582 | 2021-08-07T17:54:16 | 2021-08-07T17:54:16 | 148,709,144 | 0 | 0 | Zlib | 2021-08-07T17:54:17 | 2018-09-13T23:21:30 | C | UTF-8 | C | false | false | 3,239 | c | #include "../internal.h"
int null_segment_free(struct mixed_segment *segment){
segment->data = 0;
return 1;
}
int null_segment_start(struct mixed_segment *segment){
if(segment->data == 0){
mixed_err(MIXED_BUFFER_MISSING);
return 0;
}
return 1;
}
int null_segment_set(uint32_t field, uint32_t locatio... | [
"shinmera@tymoon.eu"
] | shinmera@tymoon.eu |
117c6bef9ba246de8eb5957afc51d9049237b554 | b66185014c49a34d4d10e3137103c36d17784b88 | /22 ATK-S1216F8 GPS模块实验/USER/main.c | b13433672b2a718ee0a20379ed04845bd8ac2ede | [] | no_license | QHZ417/stm32program- | bc55f4ea7b60bf47397aacc2504283ea75d3f466 | 44fb9304cd6f9fcdd52d84fdf89d68b69e9f2aed | refs/heads/master | 2023-03-02T04:39:23.142137 | 2021-02-11T10:22:54 | 2021-02-11T10:22:54 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 4,556 | c | #include "sys.h"
#include "delay.h"
#include "usart.h"
#include "led.h"
#include "lcd.h"
#include "usmart.h"
#include "gps.h"
#include "usart3.h"
#include "key.h"
#include "string.h"
//ALIENTEK 战舰V3/精英开发板扩展实验16
//ATK-S1216F8 GPS模块测试实验
//技术支持:www.openedv.com
//广州市星翼电子科技有限公司
u8 USART1_TX_BUF[USART... | [
"2502785143@qq.com"
] | 2502785143@qq.com |
4f2cadae8c8e15a827a4f243c348904a3a2cee78 | e899b7bb6a20bae78b3b85f404161b6e30bf925e | /module/define_convert/struct_ops.h | d0ace61901f9247306f2bce0811ba41767c2d869 | [] | no_license | FunctFan/cube_manage | 43761daf1b1622d5d5c9a43533169ea6aa480a26 | 13f471e48f46857499f08a278bc4b032b0a9e90f | refs/heads/master | 2021-10-28T17:34:38.609790 | 2019-04-24T09:01:40 | 2019-04-24T09:01:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,607 | h | /*************************************************
* Hige security Linux Operating System Project
*
* File description: Definition of data describe struct header file
* File name: struct_deal.h
* date: 2008-05-09
* Author: Hu jun
*************************************************/
#ifndef STRUCT_OPS_H
#... | [
"algorist@bjut.edu.cn"
] | algorist@bjut.edu.cn |
a60198b0d385bf4ebeb9e9d1a85e8f7ed9498919 | 2bbbe579a904fdc6ec06ad6c94237c9d06c58018 | /testsuites/kernel/sample/kernel_base/core/hwi/smp/It_smp_los_hwi_ipi_001.c | 820e3858906a4dcfec3eef0968b18f4261ec7cb7 | [
"BSD-3-Clause"
] | permissive | zuiaichi/kernel_liteos_a_note | 98e622f2ee65ecb0ec987f234767bc5bfdf34262 | 547a4b3582581da3321c82b7e19114c165db0c94 | refs/heads/master | 2023-06-08T17:05:22.794654 | 2021-06-30T02:06:44 | 2021-06-30T02:06:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,440 | c | /*
* Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
* Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redist... | [
"kuangyufei@126.com"
] | kuangyufei@126.com |
74dc82adc685832d5e88d6b1fe8f33be596f5bdc | 2b120d9fe28a0040b48ddb868d01e2e0b594c206 | /README.c | fd0d83903bbf526ceb48e3cf5130ad7f8b84c2a1 | [] | no_license | AparnaAbi/123 | f849e8ab0c4b62f301cbadad0a4a3fce874eef94 | 8af49445d23c02995b5c70b609a1ba0266a095ea | refs/heads/master | 2021-01-17T16:20:19.887730 | 2016-07-10T06:18:13 | 2016-07-10T06:18:13 | 62,984,866 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 628 | c | # 123
#include <stdio.h>
void towers(int, char, char, char);
int main()
{
int num;
printf("Enter the number of disks : ");
scanf("%d", &num);
printf("The sequence of moves involved in the Tower of Hanoi are :\n");
towers(num, 'A', 'C', 'B');
return 0;
}
void towers(int num, char frompeg, cha... | [
"noreply@github.com"
] | AparnaAbi.noreply@github.com |
4be588d460c8481f9f8461fd8d870f6a6c161064 | 3973dcc5f40dec694bf204d21c7308badf12e8b9 | /linux_lecture_note/6/signal4.c | c7a7a47682acb1075b5997c201bd4e540eff6005 | [] | no_license | daeroro/StudyNote | 4848f114c2842d72db6cf727504e0035562abcb5 | 54d436c0a31785f43fe93c3c7d4730fd30266a13 | refs/heads/master | 2021-08-16T15:15:37.378991 | 2021-04-21T12:47:03 | 2021-04-21T12:47:03 | 179,621,837 | 0 | 0 | null | 2021-06-17T09:47:26 | 2019-04-05T05:00:51 | VHDL | UTF-8 | C | false | false | 424 | c | #include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
void my_sig(int signo)
{
printf("You must insert coin\n");
exit(0);
}
int main(void)
{
char buf[1024] = {0};
int ret;
signal(SIGALRM, my_sig);
for(;;)
{
alarm(10);
if((ret = read(0, buf, sizeof(buf)))>0)
... | [
"skseofh@naver.com"
] | skseofh@naver.com |
085a944946ff52f44c50132c641ce377dd186bb7 | 0331def34f2940b8799f29fb0d459c40b773c283 | /rinutils/include/rinutils/count.h | 5dc577981a23cad4b5d8ad9e4dc1626544701340 | [
"MIT"
] | permissive | shlomif/rinutils | f9be8310f6f9605bc93dbd0a3aa273f6c92bef2b | e03893dbbd94716380a895d88214336c2ce1d57a | refs/heads/master | 2023-07-22T17:24:07.250168 | 2023-07-12T06:00:47 | 2023-07-12T06:00:47 | 187,391,811 | 8 | 3 | MIT | 2023-04-06T08:11:57 | 2019-05-18T18:22:43 | C | UTF-8 | C | false | false | 599 | h | // SPDX-License-Identifier: MIT
// This file is part of Freecell Solver. It is subject to the license terms in
// the LICENSE file found in the top-level directory of this distribution
// and at http://fc-solve.shlomifish.org/docs/distro/COPYING.html . No part of
// Freecell Solver, including this file, may be copied, ... | [
"shlomif@shlomifish.org"
] | shlomif@shlomifish.org |
afd380b2f7148f879722b8751727f3003771a92b | 3583eeb1286386d4e360c862458b510b631b9f57 | /PIM1S/MenuPizzaria.c | d11f58ca3fafe4b65f01efd33e1bf5d5dd24c583 | [] | no_license | CaaioSB/PIM1S | e4c51e65d1aad9181b7bf272b87d4f9edae2bb8e | 86b2f381b80ee1a45a19da74c83b051695fe5ca2 | refs/heads/master | 2022-03-17T17:14:21.105337 | 2019-12-05T19:17:38 | 2019-12-05T19:17:38 | 203,930,189 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 1,465 | c | #include "MenuPizzaria.h"
#include "util.h"
#include "conio.h"
#include "BibFuncionario.h"
void menuPizzaria() {
char opcao;
inicio:
system(CLEAR_SCREEN_PROGRAM);
centerText(BLUE "MENU PRINCIPAL - SISTEMA GERENCIADOR DE PIZZARIA" WHITE, cmd_dimension.columns + 11);
for (int i = 0; i < cmd_dimension.rows / 2 - 3; i... | [
"caio_silvabatista@hotmail.com"
] | caio_silvabatista@hotmail.com |
b41294f55d98816fa9a366f71c6af6bb7714b944 | 582f1097ee628120f17eb0a71ef1bf37448cdaf3 | /if/Porcentaje con if.c | 0d0df8587fde04953a3cbcb87fadf7b407beec3f | [] | no_license | clgvelasco/Programacion-Basica | 76fc3cf6061d66c291df599bccef8768f1136132 | 4d932baff12c196ca832a25538e00c9f81d0587c | refs/heads/master | 2016-09-10T14:02:40.182072 | 2012-08-31T03:55:12 | 2012-08-31T03:55:12 | 5,624,215 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,270 | c | //Librerias
#include <stdio.h>
#include <conio.h>
int main()
{
float salario,impuestos,neto,horas;
printf("Cuantas horas trabajaste: "); scanf("%f",&horas);
salario=horas*20;
if(salario>=0 && salario<=100)//Concicional if con operador de relacion "&&=y"
{impuestos=salario*.02; neto=salario-imp... | [
"clgvelasco@gmail.com"
] | clgvelasco@gmail.com |
85b303a96d11265b550f4aa7ba9fd985750bcd2c | dba6e70536bf8529a031df58f0e58a2a02d4fbef | /mcu sdk file/SDK_2.5.0_LPCXpresso54114/boards/lpcxpresso54114/cmsis_driver_examples/i2c/dma_b2b_transfer/slave/cm4/cmsis_i2c_dma_b2b_transfer_slave.c | 12e28ae3f22bbe447af2f3df7eb86e182de0ce90 | [] | no_license | parikhabhishek02/project | 636f05cdef2cd6407dfb6a9fd7d1275b47dbad38 | 36bf8ffcf6b22ffa4f3fe370826a04874baa33ba | refs/heads/master | 2020-06-15T11:11:47.651127 | 2019-08-23T17:07:25 | 2019-08-23T17:07:25 | 195,282,396 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,067 | c | /*
* Copyright 2017 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/* Standard C Included Files */
#include <string.h>
/* SDK Included Files */
#include "board.h"
#include "fsl_debug_console.h"
#include "fsl_i2c.h"
#include "Driver_I2C.h"
#include "fsl_i2c_cmsis.h"
#include "fsl_i2c_dm... | [
"Baljinderkbains07@gmail.com"
] | Baljinderkbains07@gmail.com |
f8bb16ec7d11e3a6b88660e2208c4d01a74126ef | c5dc4299c9db21cb4edeab43d93a9165788dba0b | /objects/media/cameras/limiter.obj.h | ebadfa5ccc62018133103c25a95aba4c3609913c | [] | no_license | nardinan/miranda | 34c8115f3764741c51e793db15a18ad43cfed668 | 0f941bc682fad076a537ca009045eff1ad7a7c0d | refs/heads/master | 2021-05-22T10:38:05.145491 | 2020-12-28T03:33:24 | 2020-12-28T03:33:24 | 19,187,464 | 13 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,868 | h | /*
* miranda
* Copyright (C) 2014-2020 Andrea Nardinocchi (andrea@nardinan.it)
*
* 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 Software Foundation, either version 3 of the License, or
* (at your option) any... | [
"andrea@nardinan.it"
] | andrea@nardinan.it |
691186e4df19417cc73d361ed04660339b4a9917 | 329f040bd7da89c42fb309585dd559d7c39b5ea9 | /include/chip8stack.h | 9a80e72b824880159ee303836f45e864cd2fea3b | [] | no_license | blueBye/chip8 | 59ad4ad506fd7dd2c69abfc37f6a73f31532ac41 | 1c3af1fa6fc457552be8ac72f0a1132a96a93050 | refs/heads/master | 2022-12-20T19:59:16.874422 | 2020-09-11T14:09:34 | 2020-09-11T14:09:34 | 290,578,717 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 277 | h | #ifndef CHIP8STACK_H
#define CHIP8STACK_H
#include "config.h"
struct chip8;
struct chip8_stack{
unsigned short stack[CHIP8_TOTAL_STACK_DEPTH];
};
void chip8_stack_push(struct chip8* chip8, unsigned short val);
unsigned short chip8_stack_pop(struct chip8* chip8);
#endif | [
"navidshirmohammadi81@gmail.com"
] | navidshirmohammadi81@gmail.com |
f651c49fce204de45330e61938a30f4bcb7fda88 | 0d43bd107c7a0e05098f27269c4e13a4f2f06c7d | /Projects/Digital Clock_/main.c | 2b404581eeef83b165056069b0d8c0f4ab032595 | [] | no_license | mo2274/AVR | aee167ca59d7ea8cd1b61b5e5fb7426abdf0a2cb | c88388fb8850507a3edca33d52780649eb0d90ce | refs/heads/master | 2022-11-20T14:59:25.019359 | 2020-07-22T03:25:42 | 2020-07-22T03:25:42 | 279,106,369 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,102 | c | /*
* DIO Driver.c
*
* Created: 09/05/2020 06:00:46
*/
#include "StdTypes.h"
#include "Common.h"
#include "Dio.h"
#include "Delay.h"
#include "Dio_Config.h"
#include "SevenSegment.h"
#include "KeyPad.h"
#include <util/delay.h>
extern Dio_Config_t default_configuration;
bool Digital_Clock(void);
int main(void)
... | [
"mohamedzaghlol74111@gmail.com"
] | mohamedzaghlol74111@gmail.com |
92486b769134290d323124d2ade273a58dbf332c | 5f9b26a41102c38da28b8f757a5586f9bc7cf71a | /crates/zig_build_bin_windows_x86_64/zig-windows-x86_64-0.5.0+80ff549e2/lib/zig/libc/include/any-windows-any/adshlp.h | 96e204b1f73bbed4cdfc27cc9395148b827968e6 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain",
"MIT"
] | permissive | jeremyBanks/zig_with_cargo | f8e65f14adf17ed8d477f0856257422c2158c63f | f8ee46b891bbcdca7ff20f5cad64aa94c5a1d2d1 | refs/heads/master | 2021-02-06T10:26:17.614138 | 2020-03-09T04:46:26 | 2020-03-09T04:46:26 | 243,905,553 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,615 | h | /**
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#include <winapifamily.h>
#ifndef _ADSHLP_
#define _ADSHLP_
#ifdef __cplusplus
extern "C" {
#endif
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
HRESULT W... | [
"_@jeremy.ca"
] | _@jeremy.ca |
967e3bfaf4081c23edadb96c2994559d0db10b8f | aa7fc244d220f218c799158ed4076628911a85f9 | /PRIMERO/PPROG/src/inventory_test.c | fd20e27f15796cab9fbbdb4b54e780ce1f556e0d | [] | no_license | Juanllamazares/informatica-uam | 4bba8f33ad2c9c358801d74d6cc394a2418a7f62 | 9292b3824d2b748033eb5ef73f918e13d9ff5fba | refs/heads/master | 2022-12-23T13:38:42.543604 | 2020-09-17T15:37:40 | 2020-09-17T15:37:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,698 | c | /**
* @brief It defines the die test
*
* @file inventory_test.c
* @author Guillermo Hoyo
* @version 1.0
* @date 31-03-2017
* @copyright GNU Public License
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "inventory.h"
#include "inventory_test.h"
#include "test.h"
#define MAX_TESTS 20... | [
"tom3.hv23@gmail.com"
] | tom3.hv23@gmail.com |
ab534f0c8f98df999df1761981bb4fc09e281c9c | 0ddfcbe3c228d82cb27cbe5121f5980efbc36e78 | /nRF51822/projects/hrm/btle.h | addae44f60f0e3832c7d9287cfc581ff39a0c849 | [] | no_license | adamiaonr/IntroToBLE | f4c5ec0f7bdad61dc9cc8f66d126a9e31f0d87f5 | 3518395d3d73e7e908702a858f862dd605f6dfc4 | refs/heads/master | 2021-01-21T03:50:00.377234 | 2016-03-24T20:07:04 | 2016-03-24T20:07:04 | 54,656,376 | 0 | 0 | null | 2016-03-24T16:18:07 | 2016-03-24T16:18:07 | null | UTF-8 | C | false | false | 12,298 | h | /**************************************************************************/
/*!
@file btle.h
@author hathach (tinyusb.org)
@section LICENSE
Software License Agreement (BSD License)
Copyright (c) 2013, K. Townsend (microBuilder.eu)
All rights reserved.
Redistribution an... | [
"contact@microbuilder.eu"
] | contact@microbuilder.eu |
197cb610f52da82398aee71068afc58cb53470bd | bade93cbfc1f25160dfbe9493bfa83f853326475 | /mwc/romana/relic/b/bin/nohup.c | aed13eeb4757725eb54d07524e1d530f57c4258c | [
"BSD-3-Clause"
] | permissive | gspu/Coherent | c8a9b956b1126ffc34df3c874554ee2eb7194299 | 299bea1bb52a4dcc42a06eabd5b476fce77013ef | refs/heads/master | 2021-12-01T17:49:53.618512 | 2021-11-25T22:27:12 | 2021-11-25T22:27:12 | 214,182,273 | 26 | 6 | null | null | null | null | UTF-8 | C | false | false | 3,757 | c | /*
* Make a process immmune to quit and hup signals.
* Vlad 2-12-92
*/
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <ctype.h>
#include <access.h>
char *flatten(); /* Convert array of strings to a string */
char *name;
main(argc, argv)
int argc;
char **argv;
{
if (argc < 2) {
fprintf(stde... | [
"gspurki@gmail.com"
] | gspurki@gmail.com |
0eb95777576d71676459ffda9be7683f610cf1d4 | b450eb37a78157e8c0a53eeede6074d2906ebeef | /modulemd/v1/modulemd-modulestream.c | 84f20e9fa1d41a458eef5cf8bb8dd893f40be83a | [
"MIT"
] | permissive | asamalik/libmodulemd | 18f4100290879bc702c86ba523017b199476a920 | ca232c0c450d2a21e1c80ee7baf0d74d5f3c399e | refs/heads/master | 2020-04-08T13:29:56.754232 | 2018-11-06T16:07:59 | 2018-11-26T17:56:40 | 159,393,882 | 0 | 0 | null | 2018-11-27T20:17:59 | 2018-11-27T20:17:58 | null | UTF-8 | C | false | false | 62,304 | c | /*
* This file is part of libmodulemd
* Copyright (C) 2017-2018 Stephen Gallagher
*
* Fedora-License-Identifier: MIT
* SPDX-2.0-License-Identifier: MIT
* SPDX-3.0-License-Identifier: MIT
*
* This program is free software.
* For more information on the license, see COPYING.
* For more information on free softw... | [
"sgallagh@redhat.com"
] | sgallagh@redhat.com |
6a2cc87f410c9c24443d096ef6ae2e3857586314 | 3136933c4bec4832abdb8db7b17a4067cd881fc4 | /libsent/src/adin/zc-e.c | b8644063d903d740bc0ead58f594115039018497 | [] | no_license | Dayof/api-julius | b6323e52b4355bf62d73043c415e6d19fd6e4e18 | ad713706ac830cb21fe09dab3d802fba300cf35c | refs/heads/master | 2021-01-17T17:36:54.739470 | 2016-07-21T10:47:04 | 2016-07-21T10:47:04 | 63,858,377 | 0 | 0 | null | null | null | null | EUC-JP | C | false | false | 4,439 | c | /**
* @file zc-e.c
*
* <JA>
* @brief 音声区間検出のための零交差数カウント
*
* 与えられたバッファ長内の零交差数をカウントします.
* 同時に, 呼ばれたバッファを順次バッファ長分だけ古いものに入れ替えます.
* このため入力はバッファ長分だけ遅延することになります.
* </JA>
* <EN>
* @brief Count zero cross and level for speech detection
*
* Count zero cross number within the given length of cycle buffer.
* The ... | [
"dayannefernandesc@gmail.com"
] | dayannefernandesc@gmail.com |
1f0d275d9f120031c90336e615790bb03957e2cb | 759164de47e868589484508bb2029069cb380d1b | /include/prototypes.h | 811affb08833ebbb4329bd6325d564de6933d546 | [] | no_license | harrischristiansen/cs503_lab3 | 18bde0b810cd060f38cb582a3301ff18b68f9a65 | c0f6f61e026c21d655ee7faff2d011d42e9da34b | refs/heads/master | 2021-08-30T03:25:52.131744 | 2017-12-15T21:49:27 | 2017-12-15T21:49:27 | 113,243,637 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,329 | h | /* in file addargs.c */
extern status addargs(pid32, int32, int32[], int32,char *, void *);
/* in file allocate_bs.c */
extern bsd_t allocate_bs(uint32);
/* in file arp.c */
extern void arp_init();
extern status arp_resolve(uint32, byte[]);
extern void arp_in(struct arppacket *);
extern int32 arp_alloc();
extern voi... | [
"harrischristiansen@mac.com"
] | harrischristiansen@mac.com |
e521e76b09a888c7d93eb5efc0f51d9aae635940 | c2a46c40ed362bd91c899fcf0b858ecc9157a344 | /LV.4/3012. 文字搜索-長恨歌I/main.utf8..c | dc0eed7bf97557dcb54bef1d83c3d9f2080be40d | [] | no_license | boyleerock/C-Cpp-course-NTU | 7673b21f9d4005d8418cab1e88ba60457f36d2f5 | 5098be6792463e3b44d27bd56826aa322fe4b77f | refs/heads/main | 2023-05-31T16:10:20.569493 | 2021-07-04T11:57:58 | 2021-07-04T11:57:58 | 382,584,222 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,224 | c |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]) {
char str1[10000] = "漢皇重色思傾國,御宇多年求不得。楊家有女初長成,養在深閏人未識。天生麗質難自棄,一朝選在君王側。回眸一笑百媚生,六宮粉黛無顏色。春寒賜浴華清池,溫泉水滑洗凝脂;侍兒扶起嬌無力,始是新承恩澤時。雲鬢花顏金步搖,芙蓉帳暖度春宵;春宵苦短日高起,從此君王不早朝。承歡侍宴無閑暇,春從春遊夜專夜。後宮佳麗三千人,三千寵愛在一身。金屋妝成嬌侍夜,玉樓宴罷醉和春。姊妹弟兄皆列士,可憐光彩生門戶。遂令天下父... | [
"noreply@github.com"
] | boyleerock.noreply@github.com |
359e2ed4035769492d2e48ab0a650f0112d8d725 | f90124df1ba449dc4955fcc50c18edcf952515bf | /firmware/Dozameter/EnglishFont.h | 7b1143d940304e9182674555a3dd33ff347fb507 | [] | no_license | sasha1396/Dozimetr | 578e41c7abf4530b945be8f2c60b810a647cc616 | 29c6bfa1972da200ff85f4244e85c328d33174c3 | refs/heads/main | 2023-05-22T21:38:07.759286 | 2021-06-16T19:30:15 | 2021-06-16T19:30:15 | 377,559,036 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,625 | h | /*
* EnglishFont.h
*
* Created: 17.11.2019 18:32:09
* Author: Sasha
*/
#ifndef ENGLISHFONT_H_
#define ENGLISHFONT_H_
const unsigned char font6x8[][6] =
{
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, // sp
{ 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00 }, // !
{ 0x00, 0x00, 0x07, 0x00, 0x07, 0x00 }, // "
{ 0x00, 0... | [
"nikotin@nxt.ru"
] | nikotin@nxt.ru |
3f80498846d289aad31605dce044f15a1f718974 | ea5d99d4f5116bd4a4bf4100ba8d429dccc3acae | /Projects/p1/1-2.c | 36cd370da09cfd66fd7217181a5b726aeabc292b | [] | no_license | HenziKou/CIS-314 | 1ed611520daa250ea428e24dc12d9474891334c0 | 2d2bd5ed90bde7e1105c6801af8c2b801914a057 | refs/heads/master | 2021-01-09T11:43:53.062595 | 2020-02-22T06:23:21 | 2020-02-22T06:23:21 | 242,287,703 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 468 | c | #include <stdio.h>
unsigned int combine(unsigned int x, unsigned int y) {
/* Extract desired bytes by masking undesired fields */
int x_bytes = x & 0xffff0000;
int y_bytes = y & 0x0000ffff;
/* Combine both words with desired bytes */
int join = x_bytes | y_bytes;
printf("%X\n", join);
return 0;
}
int main(... | [
"henzikou@gmail.com"
] | henzikou@gmail.com |
0467c180949f0ab2415bc7b46d924e94f03cccda | 934665ce62a926e5252e3282b703b543603e80ce | /producer-consumer.c | c46479609879c6c35eaa206903d32957ea56143c | [] | no_license | ranjanak118/os | 2630988151e59937f916baf067f00fe1cc8bd5f5 | de702167a0c0a2af4b99c96cc00cacda6380fafb | refs/heads/master | 2020-05-02T12:23:50.486307 | 2019-03-27T09:11:28 | 2019-03-27T09:11:28 | 177,957,298 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,418 | c | #include "stdio.h"
#include "stdlib.h"
#include "pthread.h"
#include "semaphore.h"
#define BUFFER_SIZE 16
sem_t fill;
sem_t empty;
pthread_t producerThread[50], consumerThread[50];
int buffer[BUFFER_SIZE];
int counter;
sem_t mutex;
void init()
{
sem_init(&mutex,0,1);
sem_init(&fill,1,0);
sem_init(&empty,1,BUFFE... | [
"noreply@github.com"
] | ranjanak118.noreply@github.com |
88bfe6135320e9024f51f534bb326ab377ed9df4 | cb3fe2aa64cb24d0ced9adea6242671c075992b8 | /kernel/platform/kprintf.h | bdd875ce9f32b3647101970abeb0dd9a8737e985 | [
"MIT"
] | permissive | goniz/gzOS | 2f5bad243d6a80d2e65df0804161efeceeae56a2 | 176bfcdd06370d634a56df61b0cd7cf6c92ad9f8 | refs/heads/master | 2021-01-11T17:04:48.961772 | 2018-06-08T22:43:49 | 2018-06-08T22:43:49 | 69,507,029 | 3 | 2 | null | 2017-06-03T16:18:12 | 2016-09-28T21:56:47 | C | UTF-8 | C | false | false | 309 | h | //
// Created by gz on 6/11/16.
//
#ifndef GZOS_KPRINTF_H
#define GZOS_KPRINTF_H
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
void vkprintf(const char *fmt, va_list arg);
void kprintf(const char *fmt, ...);
void kputs(const char* s);
#ifdef __cplusplus
}
#endif
#endif //GZOS_KPRINTF_H
| [
"goni1993@gmail.com"
] | goni1993@gmail.com |
e7123c522e824570efad19cbd90253ffc289f806 | 67e1af68e9523b7d4619d1d36f9bf5c5ddffc686 | /oldcode/ptraceutils.h | f30d145a6c73500a662f7a55f8de56bc36c8559e | [
"MIT"
] | permissive | pi3orama/Snitchaser | 54a6fd3eea5071f3c5625706ccf80c2d1e0ba76d | 99145955cd278c3f85be455ee039f44050de4d15 | refs/heads/master | 2021-01-15T11:13:32.377435 | 2010-09-08T02:28:39 | 2010-09-08T02:28:39 | 882,971 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,208 | h | /*
* ptraceutils.h
* by WN # Jun. 04, 2009
*/
#ifndef PTRACEUTIILS_H
#define PTRACEUTIILS_H
#include <sys/cdefs.h>
#include <sys/user.h>
#include <stdint.h>
#include <unistd.h>
#include <asm/unistd.h>
#include "defs.h"
__BEGIN_DECLS
extern pid_t
ptrace_execve(const char * filename, char ** argv, char ** environ... | [
"pi3orama@gmail.com"
] | pi3orama@gmail.com |
c9e1d1f355771fd7d8a9bd8b5d64b2b5ac8894d7 | 8febfac9a4c55c042c4427270b018e4539252f37 | /nforward.c | 3ab3fdb3118ae51e179a1bba11b5777d59f90c2f | [] | no_license | abhi7631/nmp | a39605d961d7e664247d7d7876e03ec5bf8ffd76 | e23a1ebb14db9c10fb5dcf12ee1a43d7c106c06f | refs/heads/master | 2021-05-01T04:06:09.470673 | 2018-02-12T04:20:22 | 2018-02-12T04:20:22 | 121,199,074 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 783 | c | #include<stdio.h>
main()
{
int i,j,n;
float f[10][10]={0},y[10],x[10],s,p=1,xp,h,u;
printf("\nENTER THE NO. OF POLES:");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("\nENTER THE VALUES OF X[%d]",i);
scanf("%f",&x[i]);
}
for(i=0;i<n;i++)
{
printf("\nENTER THE VALUES OF Y[%d]:",i);
scanf("%f",&y[i]);
}
... | [
"noreply@github.com"
] | abhi7631.noreply@github.com |
75801b2704490d5bc35573dc8e27883a562bcf13 | a8baf55d325f4dd1bff4707fd6c8e1f00ec89946 | /enums_conversion/test/negative_return_2.c | 7ab60e8805bab019e9c8526811d779475303a7d8 | [
"MIT"
] | permissive | vstakhov/elfs-clang-plugins | e8a240c1a35c857e03bd42d043fb7e843f3b8632 | 193fa56214eb842ff723f5937ab13793bce84370 | refs/heads/master | 2020-04-03T03:37:05.999739 | 2017-11-22T00:36:32 | 2017-11-22T00:36:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 109 | c | #include <stdbool.h>
#include "test_enums_conersion_common.h"
bool g(void);
bool g(void)
{
return A;
}
| [
"noam.lewis@elastifile.com"
] | noam.lewis@elastifile.com |
1b8ba80b93d36f74cd06b3590801d1988dfbf40d | 6f168b328bdb3e02050b8ac5324495b8755ab3ed | /leptonlib-1.58/src/compare.c | 4a3421f64ac396f8a09b09fea6af075217da341c | [
"Leptonica",
"CC-BY-2.5"
] | permissive | RaphaelK12/jbig2 | ed7a149c83b2e0f3cf20c5eaabbd7973fba3e023 | 1479d8833c28d4c45f2fb34aa09fcded2ba28f4d | refs/heads/master | 2022-04-17T07:02:53.698978 | 2020-04-09T09:13:28 | 2020-04-09T09:13:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 36,055 | c | /*====================================================================*
- Copyright (C) 2001 Leptonica. All rights reserved.
- This software is distributed in the hope that it will be
- useful, but with NO WARRANTY OF ANY KIND.
- No author or distributor accepts responsibility to anyone for the
- consequence... | [
"rakaja@haring.mia.uni-saarland.de"
] | rakaja@haring.mia.uni-saarland.de |
eff98e3e199176a7c57001c8058af62a171b5b2b | e2d76df0b44b44b5735e1a06ed44b9419dcbb048 | /bin/win/openssl/include64/openssl/opensslconf.h | abf7480414731faed7ad75a63858f53191b6a97d | [
"OpenSSL",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-ssleay-windows",
"MIT"
] | permissive | patchkit-net/patchkit-development-kit | 2d3c87aa2154c79560ec25e25f760492056caa11 | 47bf204e1aec50c8a9f0e71e8628f9032ff56b5c | refs/heads/master | 2020-07-28T07:31:15.210343 | 2018-12-04T14:12:23 | 2018-12-04T14:12:23 | 73,417,927 | 2 | 1 | MIT | 2018-05-24T07:53:33 | 2016-11-10T20:21:53 | C | UTF-8 | C | false | false | 7,739 | h | /* opensslconf.h */
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
#ifdef __cplusplus
extern "C" {
#endif
/* OpenSSL was configured with the following options: */
#ifndef OPENSSL_SYSNAME_WIN64A
# define OPENSSL_SYSNAME_WIN64A
#endif
#ifndef OPENSSL_DOING_MAKEDEPEND
#ifndef O... | [
"tomasz.jaworski98@gmail.com"
] | tomasz.jaworski98@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.