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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0919822d52952261734a2a2d2a8c50e32929ff4f | 716492003bcae71862c3eb23f3434a7a192c0f02 | /Server/Semestr_1/Modul_1/18/main.c | e3d4bf1186c59daab292e98b6a46e91a981744ab | [] | no_license | Praepostor-IU9/IU9_Server | a8c243657d3887a54dcb1271079cce5e5bfa8cd9 | 1922e68f5a44f6f8723bc14e090f234aa31b60fb | refs/heads/master | 2020-03-08T08:39:45.867949 | 2019-04-26T19:00:54 | 2019-04-26T19:00:54 | 128,027,262 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 399 | c | #include <stdio.h>
#include <stdlib.h>
#include "elem.h"
struct Elem *searchlist(struct Elem *list, int k)
{
if (list != NULL)
{
if (list->tag == INTEGER && list->value.i == k) return list;
if (list->tag == LIST && searchlist(list->value.list, k) != NULL)
return searchlist(list->v... | [
"Chugunov_official@mail.ru"
] | Chugunov_official@mail.ru |
3492171fdfa96bd2f93b051a843bd04719a2b672 | 5385599dbdbf0bee3b4ab3f0a10961dd78a83449 | /pspsdk/.svn/pristine/34/3492171fdfa96bd2f93b051a843bd04719a2b672.svn-base | dd344613d2d974826d0ba2f089d4ce284b08c862 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | heliumfire/psp_sdk_dev | eaa51957e4582d2550d81b01568a4f6f623f2b6c | e9064e510fbd493847fc8875e0e4adb35c205c42 | refs/heads/master | 2020-05-18T19:40:11.499999 | 2015-08-13T04:33:38 | 2015-08-13T04:33:38 | 40,638,498 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,759 | /*
* PSP Software Development Kit - http://www.pspdev.org
* -----------------------------------------------------------------------
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
*
* pspatrac3.h - Prototypes for the sceAtrac3plus library
*
* Copyright (c) 2006 moonlight
*
* $Id$
*/
... | [
"regnarts299792485@gmail.com"
] | regnarts299792485@gmail.com | |
c22bdee52f8ffeeb7c1a005205ca9d8e1b0e225e | 1e1a6d6eddcf28d0eec77de85fa9da69a8dde735 | /DLA/SKL/skl_autotune/kernel/11.11x4kernel17x8x0_51x2272x969_340+160.c | 7ef4419c7d1099cecd86c3f3920324517a035224 | [] | no_license | hpc-sslab/lamma | 8d0b55d6d1e8811110927d210b37a1bea4e02f9c | 52caa049fa9cb70021f7f7a3952c232125b3632e | refs/heads/master | 2020-03-25T17:51:14.860753 | 2018-08-08T11:45:28 | 2018-08-08T11:45:28 | 143,999,367 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,298 | c | #include "immintrin.h"
#include "x86intrin.h"
#include "zmmintrin.h"
//#include <hbwmalloc.h>
#define MR 17
#define NR 8
#define MB 51
#define NB 2272
#define KB 969
#define L1_DIST_A 340
#define L1_DIST_B 160
void micro_kernel0(int k, const double * A, const double * B, double * C, int ncol)
{
int i;
register _... | [
"choi@ssu.ac.kr"
] | choi@ssu.ac.kr |
65918d496d58b467b619f9ede46e7a97773d307d | 5cf6f6ddf18771829f4f92736e56d7dc5f707862 | /Algorithm/leetcode/21_mergeTwoLists/mergeTwoLists.h | cad451f4fd675953d13928a7e2e61c1656f118e8 | [] | no_license | Closedboy/DataStructure | 6169c9e0aca5437dc1d7f0fd06f75e148c0af766 | 8723f91b542ec2dbe5e7a0331ddaeff2b5430963 | refs/heads/master | 2020-05-19T19:35:23.490950 | 2019-08-08T09:10:54 | 2019-08-08T09:10:54 | 185,183,646 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 276 | h | #ifndef _MERGETWOLISTS_H
#define _MERGETWOLISTS_H
typedef int ElementType;
typedef struct Node *List;
struct Node {
ElementType Data;
List Next;
};
List Merge( List L1, List L2 ); /* 迭代实现 */
List MergeRecursive( List L1, List L2 ); /* 递归实现 */
#endif | [
"noreply@github.com"
] | Closedboy.noreply@github.com |
1384d748923f4c86422b88dd942425a19a6bea8e | ee8a5e4d6e9cf04a0c6d3545d1a9aca5e341f2fe | /Helicopter-project/helikopter_quarc_win64/rtGetNaN.h | 8830b2afd001fb04bc141c1ae29e129ba4c88275 | [] | no_license | tobiasny/TTK4135-Helicopter-Lab | cde2a12fd52eea780f77f51abf76f40b558fa8b7 | c517b767926a01eb07bbf9cf37c8f16d140e4a44 | refs/heads/master | 2021-04-28T07:50:19.349998 | 2018-02-20T18:13:48 | 2018-02-20T18:13:48 | 122,235,327 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 747 | h | /*
* rtGetNaN.h
*
* Code generation for model "helikopter".
*
* Model version : 1.177
* Simulink Coder version : 8.6 (R2014a) 27-Dec-2013
* C source code generated on : Tue Feb 06 09:35:42 2018
*
* Target selection: quarc_win64.tlc
* Note: GRT includes extra infrastructure and instrumen... | [
"tobiasny@stud.ntnu.no"
] | tobiasny@stud.ntnu.no |
ab8505e1bb63bb864ef17c019bc8dfeeb98abba6 | da21b6f21d72b9baf6cc532fff4f6ea19816267b | /25.c | ca4828492b96602f38b468f073944a8b299192ef | [] | no_license | MIETDevelopers/AyushRaina_100_C_Programs_Repository | 4887ea8b099bd2b1d2b90544bd8fb5c10b827af3 | c27f8af8939984cd7503210d3bc3f5137da04e00 | refs/heads/main | 2023-04-07T09:35:54.416833 | 2021-04-10T06:20:40 | 2021-04-10T06:20:40 | 348,657,734 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 759 | c | //A C Program to calculate sum of 2D Array.
#include <stdio.h>
#define MAXROW 10
#define MAXCOL 10
int main()
{
int matrix[MAXROW][MAXCOL];
int i,j,r,c;
int sum,product;
printf("Enter number of Rows :");
scanf("%d",&r);
printf("Enter number of Cols :");
scanf("%d",&c);
printf("\nEnter matrix elements :\n"... | [
"2020a1r100@mietjammu.in"
] | 2020a1r100@mietjammu.in |
08cf3900205d3e6e321d79d83213e92d4127f025 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/37/1750.c | 15f4b12ddc21a68c5a94b5e36c632efbad715ab3 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 618 | c | main()
{
int t,i,j,k,x;
char a[100000],firstone;
int c;
scanf ("%d",&t);
for (i=0;i<t;i++)
{
c=0;
scanf("%s",&a);
for (j=0;a[j]!='\0';j++)
{
x=0;
for (k=0;a[k]!='\0';k++)
{
... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
f8e17a351ada58355775be87e245a34a1346027a | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/e22b2998-2cfa-4337-8b71-9a45d0ab8943.c | 641af608e8b9ac4eb43de4fe109958d3bca67ee7 | [] | no_license | nmharmon8/Deep-Buffer-Overflow-Detection | 70fe02c8dc75d12e91f5bc4468cf260e490af1a4 | e0c86210c86afb07c8d4abcc957c7f1b252b4eb2 | refs/heads/master | 2021-09-11T19:09:59.944740 | 2018-04-06T16:26:34 | 2018-04-06T16:26:34 | 125,521,331 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 242 | c | #include <stdio.h>
int main() {
int i=0;
int j=144;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = j-j;
l = i-j;
k = k-k*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
f42e497ed68b30fb8e16295f77a76cc8ea2893ec | dcebc8319e9eef9efe5e376916f3d28094ae31ed | /mergeBathy/GMT_Surface/include/nvdef.h | 3ce5a3fc4a0da4fd4274d2468ac4818753889085 | [] | no_license | ElsevierSoftwareX/SOFTX-D-17-00007 | 97eee1b08bb4c4b2ef457e4e94a1ce01078bea6f | 8cdc7c62d02000dab7ee0d3f8e424a4f4e7ff33d | refs/heads/master | 2021-06-14T20:58:48.541707 | 2017-01-10T18:35:02 | 2017-01-10T18:35:02 | 78,625,466 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 900 | h | #ifndef __UTILITY_NVDEFS_H__
#define __UTILITY_NVDEFS_H__
#ifdef __cplusplus
extern "C" {
#endif
/* WGS-84 semi-major & semi-minor axes, resp. */
#define NV_A0 6378137.0L
#define NV_B0 6356752.314245L
#define NV_RF 298.257223563L
#define LOG2 ... | [
"Samantha.zambo@gmail.com"
] | Samantha.zambo@gmail.com |
d34a2196a41d66b69894f33f6492e9e99f721585 | 7a059d28493cc044ed5e340e0c00c22f2cd1ce9b | /VissarionMoutafisProject3/src/TravelMonitor/travelMonitor_setup.c | e9516977291ac600ce813afc8cafffa471742842 | [
"MIT"
] | permissive | VissaMoutafis/Syspro-Assignments-2021 | 2620980217c1686bf07e04227ed8a90ed63acff2 | 968be0ba824b20b5eca331e79909e572b6d32270 | refs/heads/master | 2023-06-21T12:18:58.330237 | 2021-07-20T06:28:31 | 2021-07-20T06:28:31 | 341,684,266 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,829 | c | /**
* Syspro Project 3
* Written By Vissarion Moutafis sdi1800119
**/
#include "Setup.h"
#include <math.h>
bool assign_dirs(TravelMonitor monitor, char *input_dir) {
DIR *dirp = opendir(input_dir);
if (dirp == NULL) {
char error_buf[BUFSIZ];
sprintf(error_buf, "Problem opening directory %s",... | [
"sdi1800119@di.uoa.gr"
] | sdi1800119@di.uoa.gr |
34ced997b5ed8e28360150566404730643b32e46 | edede48bff659b2bb01233c7d07eb5039b43058b | /locks/releaseall.c | 5e14991f2efdce3278f1a1bbac1b46f201e86805 | [] | no_license | rahulsethi97/CSC501-Locks | 8c771b97cb88b3aa59913a486a5c8e31860b24e2 | fd46a8dcc979a91967a5af50df3dcf31b2293c8e | refs/heads/master | 2020-04-12T13:32:05.966357 | 2018-12-20T04:04:33 | 2018-12-20T04:04:33 | 162,524,770 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,879 | c | #include<conf.h>
#include<kernel.h>
#include<proc.h>
#include<lock.h>
int releaseall(int num,...){
STATWORD ps;
disable(ps);
unsigned long *ptr;
ptr = (unsigned long *)(&num);
*ptr++;
int i;
int errorSomewhere = 0;
for( i = 0 ; i < num ; i++){
int lockIdx = *ptr++;
if(release(lockIdx , currpid) == SYSERR... | [
"rahulsethi97@gmail.com"
] | rahulsethi97@gmail.com |
1b884aea79479b4021629eedb29963a865ed645b | 49780f24a92fcc9a7c855144fb195ae3736bf390 | /examples/devices/MSP430F2xx/MSP430F23x0_Code_Examples/C/msp430x23x0_ta_19.c | 0937b514896ec311fd299126b40ceebd002008e5 | [] | no_license | PiBoxY/msp430ware | 81fb264c86ff1f68f711965b793aa58794ae2f00 | 7c96db00f97bbfd3119843e18ac895a54b4a6d39 | refs/heads/master | 2020-04-21T07:29:13.386144 | 2019-02-06T11:32:42 | 2019-02-06T11:32:42 | 169,394,007 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,087 | c | /* --COPYRIGHT--,BSD_EX
* Copyright (c) 2012, Texas Instruments Incorporated
* 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 c... | [
"admin@piboxy.com"
] | admin@piboxy.com |
382978328d8c1702995bf4f1a17c50e80f7967fe | 6d15629874e083d1832c76ba8947ce0993589dff | /include/bounce/collision/gjk/gjk_proxy.h | 0b9aa8eb922168909df9d4ec67c9a8656041cacb | [
"Zlib"
] | permissive | freakdave/bounce | a62d8ab2968dfb4b7746e9502ecd256f0bd6c097 | bbf6605063e6a77bf548c0e366b41b8b31777a2b | refs/heads/master | 2023-08-28T04:35:49.234101 | 2021-11-12T17:21:58 | 2021-11-12T17:21:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,339 | h | /*
* Copyright (c) 2016-2019 Irlan Robson
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercia... | [
"irlanrobson@users.noreply.github.com"
] | irlanrobson@users.noreply.github.com |
92da4b69037a1aff395ec1a3a84f7864aa3ee1b1 | ae3fd2bc5e0a5de2606eaf1709b135e0ff720103 | /ADAS_core/alTILib/include/imglib/IMG_conv_3x3_i8_c16s_altek_c.h | 9c7b9bfed283769ac71fa96e356ae898ce5f8553 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | kailushan/Car_System_suv | 58ff5eab9129429708d5b66eba7de4cd2d657658 | 92ad76b36e3850a7c68e5d361041d04745bbefee | refs/heads/master | 2022-04-26T08:27:07.023109 | 2016-08-03T11:48:36 | 2016-08-03T11:48:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,393 | h | /* ======================================================================== *
* IMGLIB -- TI Image and Video Processing Library *
* *
* *
* Copyr... | [
"hardman761110@gmail.com"
] | hardman761110@gmail.com |
544eb12b09ca2a9f55ed562c76d10377652a7fff | f6fec030f2f53ca7ccaecb6af68d99a54333e852 | /MI3/Reseaux/libs/src/sck/inc/wrappers.h | d48dfd5d67cb9a2b758b337646ded67433dc6af0 | [] | no_license | Malphaet/Maximilien-Rigaut | 842da8bb8300523d501c546ea8b4073bf21968f2 | de96002073a6d6f45cc4302bcad3b2d74bca3a4c | refs/heads/master | 2021-01-02T23:07:10.894162 | 2013-02-05T17:21:33 | 2013-02-05T17:21:33 | 2,771,945 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,946 | h | /*
* wrappers.h
* This file is part of liblsockets
*
* Copyright (C) 2012 - Maximilien Rigaut
*
* liblsockets 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 License, or
* (at ... | [
"max.rigaut@gmail.com"
] | max.rigaut@gmail.com |
5275ca0cb6801b962f63c88a02b2581266b96eee | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/base/ntsetup/textmode/kernel/spstring.c | 75bbaf9a9ca67a7a3ce95bc0fdbcfad553b08525 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,293 | c | /*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
spstring.c
Abstract:
This module contains functions to manipulate strings.
These functions would ordinarily be performed by C Runtime routines
except that we want to avoid linking this device driver with
the kernel crt.
Author:
Te... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
72fc79166f700177e512f7762bb49772e1a38ec4 | e2fe2c20075e0d565dc8476235c6837b64195f9f | /Toshaba/TMPM37x/TMPM375/cmsis_lib/lib/src/tmpm375_gpio.c | 9cedf965f3b1a99668ccf33e53cff345f17c1ed0 | [] | no_license | clarenceliu/Mplib | 8b10b90c7936d240cda934c5c7f7012fc4a109c3 | b8f28cba94350fe2988ec4f5e178362b2df70923 | refs/heads/master | 2020-12-25T16:02:16.713530 | 2014-09-12T06:01:17 | 2014-09-12T06:01:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 21,398 | c | /**
*******************************************************************************
* @file tmpm375_gpio.c
* @brief This file provides API functions for GPIO driver.
* @version V2.0.2.1
* @date 2013/01/22
*
* THE SOURCE CODE AND ITS RELATED DOCUMENTATION IS PROVIDED "AS IS". TOSHIBA
* CORPORATI... | [
"xinyun@coocox.com"
] | xinyun@coocox.com |
4f76ce8e4be1c966d94a5d0fb241490ac98c5996 | bb8867628faa6f0963b0fe0211bc936bc2a8ad60 | /parprog2015-lec1-src/_task/matvec.c | 1f0c16fe4efc7ab5067021245c33681f7f05578f | [
"MIT"
] | permissive | mkurnosov/course-parprog-2015 | 7f10e44dce0b0af9d5540ec4de91836b6c15ec02 | c855cdcdb010f1fa47a6e727ae31866893009bb4 | refs/heads/master | 2021-01-21T04:27:24.459823 | 2016-03-31T16:22:38 | 2016-03-31T16:22:38 | 32,920,981 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,570 | c | /*
* matvec.c: Example of matrix-vector product in OpenMP.
*
* (C) 2015 Mikhail Kurnosov <mkurnosov@gmail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <omp.h>
#include <sys/time.h>
/*
* Memory consumption: O(m * n + n + m)
*/
enum {
m = 20000,
n = 20000
};
void *xmallo... | [
"mkurnosov@gmail.com"
] | mkurnosov@gmail.com |
a45e7878471357212abe2072e33581a0c27b627f | 87171d32730e6a1559c28db842ef67b7b652a66e | /HWs/HW4/AkbarShah 21-30.c | 07ac9741a9cc354a669f01f769ec6cc48359371c | [] | no_license | Soroosh-Bsl/C-Programming---Fall2016-2017 | 0b9fe16af159c1bb7b09c225ed7f7c4f8b9763c9 | 5667a0e4e1d67c4320c2018c28904acb1d11f4fc | refs/heads/main | 2023-01-12T14:53:58.827425 | 2020-11-15T19:25:27 | 2020-11-15T19:25:27 | 313,104,499 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,243 | c | #include <stdio.h>
int nah1 = 0, nah2 = 0, nah3 = 0;
int a = 0, b =0, c = 0, flag = 0;
int counter = 0;
int counterz = 0;
int dabbe(int x, int y, int z, int dabbe1, int dabbe2, int dabbe3)
{
if (counter > 100000)
return -1;
if (x > nah1)
{
if (x - (b - y) < 0)
{
y += x... | [
"soroosh.baselizadeh@gmail.com"
] | soroosh.baselizadeh@gmail.com |
da4a3e003533f3e06eecf409c8679253f7a86ff2 | ae91e7f7e80f891a8116cdaba5b52b1b3175f7c3 | /src/ap/wps_hostapd.c | 17217a133715c3e1e63e579387f6f217af493223 | [
"BSD-3-Clause"
] | permissive | AlejandroAbad/hostap | fda648e9f874be650193519dd552f8f31fdd210d | 60400d5e1f21f4a1357185d4c8e3a4f781375e25 | refs/heads/master | 2020-06-04T20:27:33.386538 | 2014-04-02T18:25:05 | 2014-04-02T18:25:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 52,883 | c | /*
* hostapd / WPS integration
* Copyright (c) 2008-2012, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
#include "utils/includes.h"
#include "utils/common.h"
#include "utils/eloop.h"
#include "utils/uuid.h"
#include "common/wpa... | [
"j@w1.fi"
] | j@w1.fi |
fcb7a554062ff92dfa2e444f4948b24d9ca4f9e7 | 6bb392ae63738f85fe4a40f809ecbb4629f46ca6 | /servocont_slave/tools_control_head.h | 146c36ee2293d2b25b4722a6124cbbdf7ce9ce97 | [
"MIT"
] | permissive | hydronautics/akvator-3d-firmware | f59a74e9f769f9e2ba7490fd3b3887266e31f3f7 | 7784cc7dcb8b9cfc264798e77d4288047c4a24f2 | refs/heads/master | 2021-01-10T21:35:33.649658 | 2014-05-08T14:41:13 | 2014-05-08T14:41:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,204 | h | // Режимы работы манипулятора переключаются логической переменной servSwitching в разделе debug.
// Ее значение можно менять при компиляции, а можно
// Если true, то при движении двух звеньев, они движутся попеременно.
//Если false, то все звенья могут двигаться одноверменно.
#define SHOULDER_ELBOW_SWITCH_FREQ 3 // ... | [
"fpalta90@gmail.com"
] | fpalta90@gmail.com |
780ddb481cdb364ff1640b5870d04bd35acd7bb2 | 161114360798cdacc051b81bbe52f60eab44d0f5 | /HLED_interface.h | ce49b80c6b7621de3e867d8616ed7ea53724d37f | [] | no_license | hussieny97/Smarthomeproject | ae053e8bd6c0946ed3265a1dfb998d1edef92541 | ed5c831ac0eb41d5f98eefddfb5fce5465eb59ab | refs/heads/main | 2023-02-18T17:14:44.517626 | 2021-01-19T21:02:45 | 2021-01-19T21:02:45 | 331,107,413 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,444 | h | /**************************************************************************/
/* Name: HLED_interface.h */
/* Author: Hussien yasser */
/* Version: v1.0 */
/* Des... | [
"noreply@github.com"
] | hussieny97.noreply@github.com |
6f4a1e5bab3cf18cf8fd1784007c194682fe083b | f28ddaffaf9c6f1f6ea481dc47c6a5befe8cfc15 | /src/lib/tp_compiler/tp_semantic_analysis/tp_make_C_IR_external_declarations.c | bb6cd48d2a498f4bc82db1e6c080195d63527961 | [
"MIT",
"LicenseRef-scancode-unicode"
] | permissive | tenpoku1000/PE_COFF | c1b92bfbf2b11dea20af760704803efaba7b9716 | 143e68838fa0a340e4f2cbc7bed174ef2c01c50c | refs/heads/master | 2022-06-01T12:50:50.223919 | 2022-05-15T10:25:32 | 2022-05-15T10:25:32 | 211,465,240 | 8 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,206 | c |
// (C) Shin'ichi Ichikawa. Released under the MIT license.
#include "../tp_compiler.h"
// Convert parse tree to C IR(external declarations).
bool tp_make_C_IR_external_declaration(
TP_SYMBOL_TABLE* symbol_table,
TP_PARSE_TREE* parse_tree, TP_GRAMMER_CONTEXT grammer_context,
TP_C_OBJECT* c_object)
{
... | [
"tenpoku1000@outlook.com"
] | tenpoku1000@outlook.com |
bfb2b7c80ecd22f427c3dba87202f7fb7e11f4ac | 89a153a569d6b95caf33a0774232517a487bb436 | /key_scan/key_scan.h | 2bbc7766d0fd7b8c7010d502d8679ef96eee4753 | [] | no_license | slipperstree/stc51_framework | abaa3478af5062bed126c29820f9ede81e2cb8ae | a32cff894a8c50d03c1e3d2f2aa4da5a5d0e6cc8 | refs/heads/master | 2023-03-17T03:46:55.216258 | 2021-01-22T02:38:26 | 2021-01-22T02:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,299 | h |
#ifndef __KEY_SCAN_H__
#define __KEY_SCAN_H__
#define KEY_UP 0xf6
#define KEY_DOWN 0xee
#define KEY_LEFT 0xf5
#define KEY_RIGHT 0xf3
#define KEY_START 0xdb
#define KEY_Y 0xed
#define KEY_X 0xeb
#define KEY_A 0xdd
#define KEY_B 0xde
#define KEY_VALID(k) (k!=0xff)
//消抖动,按键扫描次数。如果连续5次都是扫描的都是... | [
"userwangjf@163.com"
] | userwangjf@163.com |
84c6eddc123e7c34b092c5e9931554162d790d5d | e070a0e00632237e48383eaa286e5c55196dde5e | /aula20160927/fpr1.c | 80a0b121a789076b0af5015b080793db36638e4b | [] | no_license | Luizito-Viana/MTP | a76aa8c6604a9ce38179367a0694467cf0776288 | 0ab0c31cf802290e36fecf218c797ec54d86c0a1 | refs/heads/master | 2020-05-21T18:00:49.875219 | 2018-09-06T01:26:31 | 2018-09-06T01:26:31 | 65,817,519 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 748 | c | #include <stdio.h>
int divisao(int dividento, int divisor, int *pquociente, int *presto);
int main()
{
int dividendo, divisor;
int quociente, resto;
printf("Digite o numero a ser dividido:\n");
scanf("%d", ÷ndo);
printf("Digite o numero que ira dividir:\n");
scanf("%d", &divisor);
if (... | [
"vianafgluiz@gmail.com"
] | vianafgluiz@gmail.com |
e2c583dc28a9f3b11ddc610cb68eeb24f34285b6 | 5d2284596e210f33bddff565f46a97fe2d0ec4fd | /扫雷小游戏/扫雷小游戏/game.c | 77a7754f5a6c1c3eb190618984e74118b61ec66e | [] | no_license | wsncumt/MineSweeper | 9eed82618f4e48acf4546974f4a4aa8d53cbc1a0 | e8e03bcbf332fb06d79fb215584e1fb5c728671d | refs/heads/master | 2022-12-08T21:11:42.515783 | 2020-09-11T14:18:03 | 2020-09-11T14:18:03 | 294,679,385 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 8,822 | c | #define _CRT_SECURE_NO_WARNINGS 1
#include "game.h"
//菜单
void menu()
{
printf("********************\n");
printf("*1.play******0.exit*\n");
printf("********************\n");
}
//初始化棋盘
void InitBoard(char board[ROWS][COLS], int cols, int rows, char set)
{
int i, j;
for (i = 0; i < cols; i++)
{
for (j = 0; j < ... | [
"1315030237@qq.com"
] | 1315030237@qq.com |
e5bfea9b4ced3668f7bd16ce8578c0530b91a01a | 3934cdf17301219728a967e8913237284ae57bd3 | /src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c2s4-minmax-fp32-avx-ld128.c | 0b781af4ed05b93028ee73625be66f8180cc487b | [
"LicenseRef-scancode-generic-cla",
"BSD-3-Clause"
] | permissive | google/XNNPACK | c1a709b570460dd9e352300b18ba75025ace34ac | c758a4a6601513736ae520dd87206c76e8f5f05a | refs/heads/master | 2023-08-30T10:43:28.569336 | 2023-08-30T07:46:17 | 2023-08-30T07:47:37 | 208,364,128 | 1,565 | 313 | NOASSERTION | 2023-09-14T19:47:21 | 2019-09-13T23:48:37 | C | UTF-8 | C | false | false | 6,497 | c | // Auto-generated file. Do not edit!
// Template: src/qs8-gemm/MRx4c2s4-sse.c.in
// Generator: tools/xngen
//
// Copyright 2022 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <assert.h>
#include <smmintrin.... | [
"xnnpack-github-robot@google.com"
] | xnnpack-github-robot@google.com |
df2062762a31a12d3fcbfb5469f91a8cf9494850 | 9161a942ae568132c9cc80421723e218f18fc647 | /lib/asn1c/nr_rrc/SRS-ResourceSet.c | a1def85645ec7aa833dc03bf88798fc4e9daa500 | [
"Apache-2.0"
] | permissive | bbscom/free5GRAN | 84ed4c38a4e588aab6642476ab4a8a9651401d4e | 064621e6ac390d81c59b2f8583873bb6b92434b8 | refs/heads/master | 2023-03-12T06:18:39.834945 | 2021-03-01T16:50:27 | 2021-03-01T16:55:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 29,567 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "NR-RRC-Definitions"
* found in "fixed_grammar.asn"
* `asn1c -gen-PER -fcompound-names -findirect-choice -no-gen-example`
*/
#include "SRS-ResourceSet.h"
static int
memb_NativeInteger_constraint_12(const asn_TYPE_descriptor_t *td, co... | [
"aymeric@dejavel.fr"
] | aymeric@dejavel.fr |
97655f6155b7ebca140ce839d1d64382277d943d | 0cfcea75a69b24049caf0241d0a76e3f346fce2f | /Requerimiento/ServidorNotificaciones/Servidor.c | 9669c2a6a7119c6c7c951582f4d4a4f35436921e | [] | no_license | javiersee/sistemas-distibuidos- | 8f99459c2d8c16289ce635f4b4cccede8d2c594c | 722682e0497fd266b88e731ac6cdb1c8f9f0d319 | refs/heads/master | 2021-01-15T03:40:03.419477 | 2020-02-25T00:17:07 | 2020-02-25T00:17:07 | 242,866,303 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,926 | c | /*
* This is sample code generated by rpcgen.
* These are only templates and you can use them
* as a guideline for developing your own functions.
*/
#include "stdio.h"
#include "notificaciones.h"
#include "string.h"
#include <stdio_ext.h>
bool_t *
enviarnotificaciones_2_2_svc(struct alerta *argp, struct svc_req *... | [
"noreply@github.com"
] | javiersee.noreply@github.com |
c74270f1d3eeb1fbfb49e637b52a96d9d89d0ab2 | 16e5384d8a81e8f14027863edae66da5b81bef7c | /rx/util.c | d1ec71b24e337152589311ade42826cce1ddf20f | [] | no_license | hanzijun/Fast-channel-hopping | a7168e7c7c89f98afdbe6cb0810a66bf7fc2b471 | a4dc6560f8fae48c64c010f844df498979323d15 | refs/heads/master | 2022-12-21T20:33:01.237273 | 2020-09-14T07:52:40 | 2020-09-14T07:52:40 | 295,341,410 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 191 | c | #include <math.h>
#include "util.h"
double db(double x)
{
if (fabs(x) < 0.0001) return -10000;
return log(x) * _10_BY_LN_10;
}
double exp_10(double x)
{
return exp(x * LN_10_BY_10);
}
| [
"noreply@github.com"
] | hanzijun.noreply@github.com |
8eeec04f42d37e56efe0ed9f6cc034a2d0278303 | 675fade53b5dc60dac5d9cf08150b15d11e6dca3 | /Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Array_InternalEnumerator_1_gen2307614139MethodDeclarations.h | d436e0f519fcee33c1da0ae51ee38e0df572dbd2 | [] | no_license | tejaskhorana/SandboxFPS | be90670c29dbe20b20295e36c85e8e73b948f08f | 6c795634703e31e4ab6d416663fbf6c89b179c59 | refs/heads/master | 2020-02-26T15:05:01.879563 | 2017-05-24T05:52:04 | 2017-05-24T05:52:04 | 83,266,163 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,270 | 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>
#include "codegen/il2cpp-codegen.h"
#include "mscorlib_System_Array_InternalEnumerator_1_gen2953159047MethodDeclarations.h"
// System.Void S... | [
"tejaskhorana@gatech.edu"
] | tejaskhorana@gatech.edu |
2951fd0e54fc2667d0e29ed72696c6758b0987a1 | d1724a73312c0e543725de57be478b5d2afd3798 | /linear search complexity.c | 53b13c54a128a9c2d3bb4389fba9d255cc1961c5 | [] | no_license | manpreetsingh1995/DataStructures | ae230c0af2f1c267d5c774a960327421edfba05c | d38db9c8f979a5c70dfdd52a8390bd1e4f27ca3b | refs/heads/master | 2022-12-24T04:12:53.297016 | 2020-09-18T14:14:34 | 2020-09-18T14:14:34 | 296,627,287 | 2 | 1 | null | 2020-09-30T17:11:51 | 2020-09-18T13:21:31 | C | UTF-8 | C | false | false | 632 | c | #include<stdio.h>
#include<stdlib.h>
#include<math.h>
void main()
{
srand(time(0));
int input,i;
float n;
printf("------------------------------------------------------\n");
printf(" | Inputs \t Complexity\n");
printf("------------------------------------------------------\n");
printf(" |\t\t Binary... | [
"dcsa.manpreetsingh@gmail.com"
] | dcsa.manpreetsingh@gmail.com |
f9170b0d4a632704495a21353f2b0ee38d55aae0 | 74ba89c668b4b0bd5adcb2b18c6a378ed4839b3e | /0x05-pointers_arrays_strings/holberton.h | c4e007bef99974b0214c730bf0c9dff5c3a273fb | [] | no_license | beemne/alx-low_level_programming | a3c5575b119a913a8b643345f198f52144d521ef | a653ba311bc48eb79f6f7ac063db1e5efaaf996c | refs/heads/main | 2023-07-09T19:56:17.379799 | 2021-08-05T09:56:05 | 2021-08-05T09:56:05 | 377,794,147 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,988 | h | #include <unistd.h>
/**
* _putchar - writes the character c to stdout
* print_alphabet - prints alphabet and returns new line
* print_alphabet_x10 - print alphabet 10 times
* _islower - return 1 if c is lowercase, 0 otherwise
* _isalpha - return 1 if c is upper or lowercase, 0 otherwise
* print_sign - return 1 f... | [
"beemnetabraham1@gmail.com"
] | beemnetabraham1@gmail.com |
bcc65532f27269933c1d15072947863a1f0c26ba | a06397965b6d36129fa48009cc891de2a56387ca | /src/f32-vrnd/gen/vrndd-avx512f-x16.c | cc6882beb35bbd5c07ecf5842ab5f156da389df5 | [
"LicenseRef-scancode-generic-cla",
"BSD-3-Clause"
] | permissive | Pandinosaurus/XNNPACK | 70e2cc2f34cf651c68eaca65f3561ed4d663a403 | 13768839fc64617264c86ac1a348a5476595901e | refs/heads/master | 2023-08-31T22:52:50.001686 | 2022-02-23T22:00:03 | 2022-02-23T22:00:59 | 246,161,859 | 0 | 0 | NOASSERTION | 2022-02-25T02:48:37 | 2020-03-09T23:15:50 | C | UTF-8 | C | false | false | 1,451 | c | // Auto-generated file. Do not edit!
// Template: src/f32-vrnd/avx512f.c.in
// Generator: tools/xngen
//
// Copyright 2020 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <assert.h>
#include <immintrin.h>
#... | [
"xnnpack-github-robot@google.com"
] | xnnpack-github-robot@google.com |
9b5149cbfc1350fb5a79f551d3dede4107012c4d | a1bf7489fe3333f6671f18bb72db8feb31446f20 | /P5/isim/mips_tb_isim_beh.exe.sim/work/m_00000000004134447467_2073120511.c | 62d619b573b02cca0f747d41c1c45612ec92c134 | [] | no_license | wirehack/Verilog-CPU | 19805a27eecf03d86f6d833e45b0a69162f766bc | 862c662f75a0abc7b63e5011165f03f69275d77d | refs/heads/master | 2021-01-10T02:21:24.062998 | 2016-03-07T10:57:04 | 2016-03-07T10:57:04 | 53,318,035 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,958 | c | /**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ ... | [
"Kevin Zeng"
] | Kevin Zeng |
21f1dc9447e05d808389650e43c47ce0a674d0c9 | 0911231747fda3f15b529862bd6fe6721ef9743a | /propagating_form_factor/setup_form.c | 3c656ff54a33573f9f36a9d3796e602bd29f0fdb | [] | no_license | maddyscientist/milc_qcd | 98c76bcf0f9e9b8a41b6bd62bdf49aee3de6bc77 | c7628211eb817ec380720a01b303c79fabdf29f6 | refs/heads/master | 2020-04-05T22:48:09.782250 | 2016-06-27T12:53:49 | 2016-06-27T12:53:49 | 62,746,488 | 2 | 0 | null | 2016-07-06T19:06:28 | 2016-07-06T19:06:28 | null | UTF-8 | C | false | false | 24,455 | c | /******** setup_form.c *********/
/* MIMD version 6 */
/* set tabstop=2 for easy reading of this file */
/* $Header: /lqcdproj/detar/cvsroot/milc_qcd/propagating_form_factor/setup_form.c,v 1.8 2011/11/29 18:49:04 detar Exp $ ***/
/* MIMD code version 4 */
#include "prop_form_includes.h"
#include <string.h>
#defin... | [
"detar@physics.utah.edu"
] | detar@physics.utah.edu |
61b5e7a5b16009a41ae7697c769074fd8ba5f0ca | 97c04ad3abf7a7787e610d1222d94dab5c439c1a | /src/main/c++/tests/chunk_test.c | ed340643457f0c8f99f490801f26f3601a208c21 | [
"LGPL-2.1-only",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"MIT"
] | permissive | yildiz-online/component-native-libsndfile | 3bde5e4dec2dace3f6d42cfa0c936c10bdfd0f49 | 4fbbf2d57dbe35ae1369983cd34d66d23b769e57 | refs/heads/develop | 2022-05-30T08:59:26.043659 | 2020-05-02T14:43:20 | 2020-05-02T14:43:20 | 103,147,888 | 0 | 0 | MIT | 2020-05-02T14:43:21 | 2017-09-11T14:42:53 | C | UTF-8 | C | false | false | 13,311 | c | /*
** Copyright (C) 2003-2016 Erik de Castro Lopo <erikd@mega-nerd.com>
**
** 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 License, or
** (at your option) any later ve... | [
"vandenborre.gregory@hotmail.fr"
] | vandenborre.gregory@hotmail.fr |
088550ee1d62c82e02c2610aeabe4182f9287bbb | d596a45d0b82374eba8c62006032c11b3b3497b3 | /vp8/common/arm/subpixel_arm.h | e86e1252f80fa6ce582cc9c1def7596a4ef80d4f | [
"BSD-3-Clause"
] | permissive | gotomypc/libvpx | 666a397617122c494845d805a7df7fd20b320ae0 | c2a8d8b54c7ebefd1cd9c55f53b9e8378f088e8b | refs/heads/master | 2021-01-15T22:58:20.916266 | 2010-07-29T14:17:40 | 2010-07-29T14:17:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,996 | h | /*
* Copyright (c) 2010 The VP8 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 contributing... | [
"jkoleszar@google.com"
] | jkoleszar@google.com |
8f23cc07c236047cee978ff3b2da776bf7b790bf | aee7e446cc44e61844c472d2a87674313b44ddd9 | /macros/z05.drawsystematics.C | b3c2a58a82eaf69998a443b7b7a7bcb9bf6ec909 | [] | no_license | hyeonjoongkim/IaaEP | 03924604022248f7044a053920224c97c2902c26 | 094015f5722d7206f5612fae201c9bc50ed7da9f | refs/heads/master | 2020-08-04T20:34:13.426776 | 2019-12-24T05:32:31 | 2019-12-24T05:32:31 | 212,271,032 | 0 | 1 | null | 2019-10-02T06:35:31 | 2019-10-02T06:35:31 | null | UTF-8 | C | false | false | 8,885 | c |
#include "include/Filipad.h"
void LoadData();
void compare();
void DrawSystematics(int padid, int iPTT, int iPTA);
void CalculateRatios(int padID, int iPTT, int iPTA);
void DrawSignal(int padid, int iPTT, int iPTA, int iSet);
void DrawPP(int padID, int iPTT, int iPTA);
void DrawIAA(int padID, int iPTT, int iPTA, int ... | [
"hyeonjoong.kim@cern.ch"
] | hyeonjoong.kim@cern.ch |
1da047aaef86635ff8f3595331cfec9f8eaf9dd0 | c4a7c633e659a6fdfc39b66e8e34a9ed841db128 | /client.h | 0fab065945a69928e3cddf7bc384385505720603 | [] | no_license | kingking888/TC-ECC | 7910f1508c7d9adc38a0d66a90a4af6973d4c7e5 | 1b908052dbaeaebbae8b9a692fae95241e5d0132 | refs/heads/master | 2023-01-19T06:00:29.613962 | 2020-11-25T18:40:08 | 2020-11-25T18:40:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,558 | h | #ifndef _CLIENT_H_
#define _CLIENT_H_
//==================================================================================
// Disable typecast warnings
//==================================================================================
#pragma warning( disable :4311 )
#pragma warning( disable :4312 )
#pragma warning(... | [
""
] | |
6e0301251e155c104012e8433cc88ca5f62fc201 | b107d7f73326f8725e08023c5da3e5082535ca85 | /include/glibc-stdlib/bug-fmtmsg1.c | 04bfaea3ce7f0ae89c12e6de1a2e01875ee8b182 | [
"Apache-2.0"
] | permissive | DalavanCloud/libucresolv | 2073188dd95503447bcbea16fa43bd938112712b | 04a4827aa44c47556f425a4eed5e0ab4a5c0d25a | refs/heads/master | 2020-04-20T10:42:52.062948 | 2019-01-09T21:54:35 | 2019-01-09T21:54:35 | 168,796,582 | 1 | 0 | Apache-2.0 | 2019-02-02T05:07:45 | 2019-02-02T05:07:44 | null | UTF-8 | C | false | false | 601 | c | #include <fmtmsg.h>
#include <stdio.h>
static int
do_test (void)
{
/* Ugly, but fmtmsg would otherwise print to stderr which we do not
want. */
fclose (stderr);
stderr = stdout;
int e1;
e1 = fmtmsg (MM_PRINT, "label:part", MM_WARNING, "text", "action", "tag");
int e2;
e2 = fmtmsg (MM_PRINT, "lab... | [
"bill_williams@cable.comcast.com"
] | bill_williams@cable.comcast.com |
78a0c5f6007c04021801c2fd46844741d750f77d | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13839/function13839_schedule_21/function13839_schedule_21_wrapper.h | 36780e72c27d1de826be86f52836a94706582f47 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 282 | h | #ifndef HALIDE__generated_function13839_schedule_21_h
#define HALIDE__generated_function13839_schedule_21_h
#include <tiramisu/utils.h>
#ifdef __cplusplus
extern "C" {
#endif
int function13839_schedule_21(halide_buffer_t *buf0);
#ifdef __cplusplus
} // extern "C"
#endif
#endif | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
fa472e54ce25019c424df7d3430bed79e4e40106 | 2683f7627ee1b0751eb3bf59bdae3e26c5071f89 | /Chapter_1/divide.c | 7a8e337933be25bc78b0d10848294a9fac0b3398 | [] | no_license | yifr/algorithms | d0270f50c3322711f58d5021b9de6f40801b859c | e597f2fd85e4465e9d9518838016fa6c346be9ab | refs/heads/master | 2020-04-20T04:49:33.630546 | 2019-02-13T18:45:35 | 2019-02-13T18:45:35 | 168,639,247 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 869 | c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
//Tuple to hold integers:
typedef struct tuple {
int quotient;
int remainder;
} Tuple;
Tuple divide(int x, int y) {
if(x == 0)
{
Tuple tup = {0, 0};
return tup;
}
Tuple tup = divide(floor(x / 2), y);
tup.quotient *=... | [
"yoniifriedman@gmail.com"
] | yoniifriedman@gmail.com |
743731633de90294c0fbcefb4ec87abf2cf0d4df | 3d5f34d1265350559e8e15e3fc2bdfccf535b0ae | /Item.h | dac909d450b71afe2bf82492ce5a9fda251542b1 | [] | no_license | roninski/hunterAI | 3d0a124007d7539c041f30c99153729d0d8b5219 | f6ff28ab2db55c26383bb1886a48292b29a31bf1 | refs/heads/master | 2021-01-01T15:59:46.345665 | 2013-11-01T07:59:05 | 2013-11-01T07:59:05 | 13,605,978 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 283 | h | // Item.h ... definition for items in Queues
// Written by John Shepherd, March 2013
// Modified for use in HunterView ADT
#ifndef ITEM_H
#define ITEM_H
#include "cities.h"
typedef LocationID Item;
#define ItemCopy(i) (i)
#define ItemShow(i) printf("%d", (i))
#endif
| [
"nathan94124@gmail.com"
] | nathan94124@gmail.com |
dda5213e7f1edf6884f201920ae280ff69821956 | 3b048f66060d647447d61a23a36931f1da062792 | /C:C++/the_c_programing_laguage(c编程语言)/5-18.c | c80f538737c872fb193e6734c1e012dc7b06dc81 | [] | no_license | rainyrun/practice | f5d68b11bb0e7fa870a7f4639851f8d6bd54a185 | f49c3a1cadf04fbdb262c46219a8e276edefb07c | refs/heads/master | 2021-03-01T15:01:13.500907 | 2020-03-08T04:14:22 | 2020-03-08T04:14:22 | 245,794,284 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 528 | c | #include <stdio.h>
/*
5-18 修改del函数,使它能够处理输入中的错误
思路:错误包括
1. 括号不匹配
2. 包含非法字符,如{}&等
5-19 修改undcl程序,使它在把文字描述转换为声明的过程中不会生成多余的圆括号
思路:生成多余圆括号的情况,如,char *a[]等返回类型是指针的情况
5-20 扩展dcl功能,使它能够处理包含其他成分的声明,例如带有函数参数类型的声明、带有类似const限定符的声明等
*/
| [
"runlei123@126.com"
] | runlei123@126.com |
bb4c140852a33dffd78270a4776fecfaee4e4eca | 7ccf371369f3d2692aeaa8010deb0aa88d299ccb | /SegundoParcialTest/src/Controller.h | 164d2b356d2b51ebab37431461b13ce5ff467d53 | [] | no_license | naxegew/testrecu2dop | 860e7eef2456bc482fc964782dd289d8d4ce79d1 | a35e1ce13398ba308725a3d12fc5b4a19cdceaf9 | refs/heads/master | 2020-10-02T03:16:21.757060 | 2019-12-12T20:24:11 | 2019-12-12T20:24:11 | 227,689,311 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 651 | h | int controller_loadFromText(char* path , LinkedList* pArrayListEntidad);
int controller_loadFromBinary(char* path , LinkedList* pArrayListEntidad);
int controller_addEntidad(LinkedList* pArrayListEntidad);
int controller_editEntidad(LinkedList* pArrayListEntidad);
int controller_removeEntidad(LinkedList* pArrayListEnti... | [
"noreply@github.com"
] | naxegew.noreply@github.com |
12bd4e4ad94bdf94342912f4fae38ed081290bd9 | e7a2da0667f53b132deba9a7d8b94336a2d8ecc9 | /Modules/Nest/src/trash_from_st/sequencer/stm32_seq.h | f940f92b46326836cb0048807bb19656a593c97d | [] | no_license | Teivaz/zeppelin | 02e55ccc6e71092190fc31e16992f9553addebf4 | c0039de1ff9dfbd5e9428169af76533ab5bf1f2b | refs/heads/master | 2020-05-21T23:21:40.591021 | 2020-02-28T00:49:44 | 2020-02-28T00:49:44 | 12,028,181 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,886 | h | /**
******************************************************************************
* @file stm32_seq.h
* @author MCD Application Team
* @brief sequencer interface
******************************************************************************
* @attention
*
* <h2><center>© Copyright (c) 2019 S... | [
"o.kuznietsov@gmail.com"
] | o.kuznietsov@gmail.com |
b25781be04257deda090be3a6c80e7c4f6ec5023 | f5d59ad6b49459cb674ee5cb03305b60142bd4ba | /Manager/Core/Src/Crypto/core.c | f3587d5f05e46eef22571e7daa4a5ce9adc4f03c | [] | no_license | arthus-leroy/ARM | f60a300e2747d32095613387fa34b9c98c2325b8 | b9892f90f1a97153e78fbc990f213ad5bef7d019 | refs/heads/master | 2023-02-22T08:49:09.371244 | 2021-01-18T16:40:34 | 2021-01-18T16:40:34 | 320,845,930 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 64 | c | # include <stdlib.h>
void
sodium_misuse(void)
{
abort();
}
| [
"arthus.leroy@epita.fr"
] | arthus.leroy@epita.fr |
3c9812a366078dcbd136c90c2ff9cdac4b86f4f4 | 684b70818f586acd580e33c2cd9b799c556bb98c | /Inc/motionControl.h | 6905193871ff6e065a94e9edfffdfa6241b68482 | [] | no_license | Starfunx/DiffDriveRobot | f3d256d63d576919aec286d975f5a1f35d634fde | 5bc9b3d2529ed39a3dd06e203590fce15c56d6f9 | refs/heads/master | 2022-04-05T17:24:16.817489 | 2020-02-20T14:39:59 | 2020-02-20T14:39:59 | 232,579,734 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,767 | h | #ifndef MOTION_CONTROL_H
#define MOTION_CONTROL_H
#include <math.h>
#include "utils.h"
typedef struct{
float aFrein;
float aMax;
float vMax;
float lastPos;
} ramp_Context;
typedef struct {
_position consign;
float Krho;
float Kalpha;
float Srho;
float Salpha;
ramp_Context ram... | [
"starfunx@hotmail.fr"
] | starfunx@hotmail.fr |
f7a516da7765d3131d2e1832b769071ee9733527 | 5630b0a520e395b1224d80a04309ed9991a2ccbe | /getGemXCode/Classes/Native/mscorlib_System_Runtime_Remoting_Metadata_SoapTypeAttributeMethodDeclarations.h | ec981f313ed2fd3bc828fba01df764a32fa5d049 | [] | no_license | WwinW/getGem | f762b538f9387a0e3adaacc2b55ac34e0dfb12df | 5b3cede71b7c50ffedf3a87f51003cb35db9b774 | refs/heads/master | 2018-12-29T19:25:51.948800 | 2015-12-07T03:16:48 | 2015-12-07T03:16:48 | 34,213,973 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,495 | 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.Runtime.Remoting.Metadata.SoapTypeAttribute
struct SoapTypeAttribute_t1885;
// System.String
struct String_t;
// System.Object
struc... | [
"wei8224_2006@126.com"
] | wei8224_2006@126.com |
b4a80d98f315d001356420cd989398174850b821 | 76dc7791471e6c0d5f6e3bbeb32b5bd58fca760e | /srcs/main.c | 786eaaccb5bb7f601b6d7557b2e377e27729a9fa | [] | no_license | Rost1998/fdf | 272fc6458042a4748be2cda1be94cb1554fa0382 | e88e0a49ff798ece0279b3ab95c3aab6a58eaeac | refs/heads/master | 2020-03-19T02:03:14.181599 | 2018-05-31T14:40:33 | 2018-05-31T14:40:33 | 135,594,357 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,081 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: ... | [
"rtulchiy@e1r5p12.unit.ua"
] | rtulchiy@e1r5p12.unit.ua |
33b9fc142720c31ae1ed1ba6a0ce1b0f2bb3a324 | acb8d4c4f974d872f31997f591fea4d748f94b93 | /kungfu/skill/qianzhu-wandu/tuxi.c | 865d4e54f43881cbb45af18fc1d03b17a5d1535f | [] | no_license | MudRen/SZMUD | 8ae6b05718b1a83363478469185e0d776b0fda5c | e3b46e6efa6d353f7f0d00ef676f97d5c0ec3949 | refs/heads/master | 2023-05-27T16:04:35.845610 | 2021-06-18T12:47:19 | 2021-06-18T12:47:19 | 361,736,744 | 1 | 2 | null | null | null | null | GB18030 | C | false | false | 2,474 | c | // Code of ShenZhou
// 千蛛万毒突袭
// chu@xkx 3/6/99
// Apache: modified so that player can't perform it continuously.
// Other parts wait for chu for balancing.
inherit F_SSERVER;
#include <ansi.h>
void remove_temp(object me) {
if (me->query_temp("perform_tuxi"))
me->delete_temp("perform_tuxi");
}
int perform(obje... | [
"i@oiuv.cn"
] | i@oiuv.cn |
47e149ae7edf552e50265c078890d4673be02f16 | 1fa97a3046ba7be0b92ef9deab77c2b3dc3b1caa | /CIS 2520 - Data Structures/A1/newton.c | a759d00db3deaccea588c9a0644257dfb395f271 | [] | no_license | GlDevop/CIS-2520---Data-Structures | 2af8bc91d6f24711733a7f9d52fe48f60a245ccc | 18024d152e5f68223f710df9a53df2841409894e | refs/heads/master | 2020-04-12T21:53:14.067673 | 2018-12-22T02:26:41 | 2018-12-22T02:26:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,522 | c | /*
Gabriel Lee
0836295
CIS 2520
2018-09-23
Assignment 1
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
double sqrtRec (long num, double acc, double fin);
double sqrtNon (long num, double acc, double fin2);
void newtonM (void) {
double acc, fin, fin2 = 0;
long num = 0;
//Scan... | [
"noreply@github.com"
] | GlDevop.noreply@github.com |
520e781f97ec63ad8127ecacef0ca93410953a76 | 7eff99d918eca4929f301238e26081d31fefca26 | /Curiosity/PIC16F1619_Cur_v315.X/mcc_generated_files/tmr1.h | 22768e52d1cea85041d9ed2eba79366a64715e45 | [] | no_license | wushifeng2017/Microchip-Dev-Boards | b0a83d0dd4e295c74a8141cc0d60284216d33965 | 6e7cd74ba0bd8448b1f84c26c87f60e558260722 | refs/heads/master | 2020-06-22T15:00:31.702133 | 2018-03-31T02:08:44 | 2018-03-31T02:08:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,120 | h | /**
TMR1 Generated Driver API Header File
@Company
Microchip Technology Inc.
@File Name
tmr1.h
@Summary
This is the generated header file for the TMR1 driver using MPLAB(c) Code Configurator
@Description
This header file provides APIs for driver for TMR1.
Generation Infor... | [
"mkhuthir@gmail.com"
] | mkhuthir@gmail.com |
8fdaa0aef63e476c5a969bd9adc5c59216577a6a | 07a342d5d61b71fe04d3528eef152f08e2c1aaf6 | /Scanner and Parser/y.tab.c | 75adfd28d6eb1e2a7a77722696680381ba54468f | [] | no_license | Sam-Malpass/Simple-Compiler | 2d7fb9cb9d6b7f065bf1ee1e0b7f172f8db954b8 | df7a1519762aaf5ebee9e2aac45e6ef62c130337 | refs/heads/master | 2021-03-21T23:53:26.250900 | 2018-03-17T21:41:10 | 2018-03-17T21:41:10 | 124,260,403 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 78,073 | c | /* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
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... | [
"sam@malpass.me.uk"
] | sam@malpass.me.uk |
cfecd4b78caaa19cb17a89688b923e429388eb8a | afcd47c793a9d9d0acfeea9e20b3c4ee297e1626 | /include/nowarn/concurrent_vector.h | b7b8e5d5b8283bede5bbf59b17ac466b9f3fa44e | [] | no_license | drearyworlds/ponygame | 17fc4ec77918e05d1d3d90c26e24ed70d45f39d6 | f7ce522365b1dbfc3eb9687b87c6754c84310bb2 | refs/heads/master | 2021-07-23T04:52:23.539764 | 2020-05-31T21:57:11 | 2020-05-31T21:57:11 | 178,504,931 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 208 | h | #pragma once
#pragma warning (push)
#pragma warning (disable: 4365 4619)
#if _MSC_VER >= VISUAL_STUDIO_2017_MSC_VER
#pragma warning (disable: 5045)
#endif
#include <concurrent_vector.h>
#pragma warning (pop) | [
"james.craft@hexagon.com"
] | james.craft@hexagon.com |
e676c833c7aa3c0b928dad9315a6777441532a79 | c90c3e7f18d5c4f01f254159a7db101fdb6fa4e5 | /src/game_core/tama/spell_00_zako.h | 23f675d6287c89bf2ffa9fdb1d4e72de6f7f4f60 | [] | no_license | GovanifY/kene-touhou-mohofu | d52c0c545a5f1d158d4c7a8a428d046a1439000b | 81580a39f74961a6d686ee1a4d2836a61e948e2b | refs/heads/master | 2021-01-20T05:07:45.802858 | 2016-03-06T08:20:21 | 2016-03-06T08:20:21 | 34,225,658 | 5 | 3 | null | null | null | null | SHIFT_JIS | C | false | false | 2,427 | h |
/*---------------------------------------------------------
東方模倣風 〜 Toho Imitation Style.
http://code.google.com/p/kene-touhou-mohofu/
-------------------------------------------------------
雑魚のカードを定義します。
---------------------------------------------------------*/
/*-----------------------------------------------... | [
"emesarke@yahoo.co.jp@9c68162a-d939-11dd-9e03-45b345501c35"
] | emesarke@yahoo.co.jp@9c68162a-d939-11dd-9e03-45b345501c35 |
32e6766a7c38c6e4abc9497a3e90ed599fc005a0 | a1a884019710dbf78e736b91d5686645b57c6784 | /book001/chap12/summary.c | 974a50bd0b2ec90f5835672fc0bbf1a7b16fdea3 | [] | no_license | cl-kn/c_study | 82fe84a947d4b500e5f552849e362ecb69b1b5a8 | f51793c50fbdd340939f479366351e0aeb178ea8 | refs/heads/main | 2023-04-10T19:46:12.964450 | 2021-04-25T06:29:00 | 2021-04-25T06:29:00 | 307,684,995 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,202 | c | //***************************************************
/** 12 日付を表す構造体と人間を表す構造体 */
//***************************************************
#include <stdio.h>
#define NAME_LEN 128
struct Date
{
int year;
int month;
int day;
};
typedef struct
{
char name[NAME_LEN];
struct Date birthday;
} Human;
void... | [
"72800355+cl-kn@users.noreply.github.com"
] | 72800355+cl-kn@users.noreply.github.com |
48dcb0c906ce544989e10df4d09f38446a45bd2f | 1dfbdc0c6a1e06d5eed685c3f1c3160cd0030744 | /src/vx-eldora/vx/minirims/include/minDef.h | 408f10b7cc95739f5f1987d44082e6ef9fdef723 | [] | no_license | NCAR/eldora_instrument | e2e7f4cc197e09562f7b307ec0bcc3c253ad97cc | 9f097875fd2f912a267d017e3a587c434bce3bff | refs/heads/master | 2020-04-27T09:55:41.179715 | 2008-08-18T23:00:00 | 2019-03-06T21:23:25 | 174,234,191 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,671 | h | /*
* $Id$
*
* Module: minDef.h
* Original Author: Reif Heck
* Copywrited by the National Center for Atmospheric Research
* Date: $Date$
*
* revision history
* ----------------
* $Log$
* Revision 1.3 1996/02/21 17:21:19 craig
* *** empty log message ***
*
* Revision 1.2 1992/09/01 17:25:12 ... | [
"granger@ucar.edu"
] | granger@ucar.edu |
1040e3d9894e1f6897bb76bc8dbc6c239486799d | 1a6035e0a2d16f2732600d919fce5ab88c6e4717 | /lib.h | ce952ed1ff73f4637e45b4219a5a08430f120995 | [] | no_license | klesogor/RTOS_lab3 | a86bfe929a3e860d2ffa282c6a26bf0a5808d44e | 1ebba9b9dfe9d028e6f603339c3ea25f0b4728ce | refs/heads/master | 2020-05-04T12:56:55.046289 | 2019-05-30T20:20:37 | 2019-05-30T20:20:37 | 179,141,830 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 943 | h | #include <stm32f10x.h> /* STM32F103 definitions */
#include "GPIO_STM32F10x.h" // Keil::Device:GPIO
#include <cmsis_os.h>
#define STEP_1 GPIO_Pin_0
#define STEP_2 GPIO_Pin_2
#define STEP_3 GPIO_Pin_5
#define STEP_4 GPIO_Pin_7
#define DIR_PIN GPIO_Pin_10
#define MODE_P... | [
"lesogor.kirill@gmail.com"
] | lesogor.kirill@gmail.com |
bf0aa6d666b55aa4301a61becbfe33ff54e6482c | add4fa6b96b9546e0f9854c733fc7d3cef29e1fa | /CMSIS/STM32MP1xx/inc/stm32mp153cxx_cm4.h | 95c10b637a6435556459a25249d43f6d3db10076 | [
"BSD-2-Clause"
] | permissive | STM32-base/STM32-base-STM32Cube | ae56d0cddca9924a54fa89229e6c784965efaefa | 71bcfb75e9b3aadbfcb05b57148d995a7f340b4f | refs/heads/master | 2020-04-24T12:09:34.541910 | 2019-12-28T19:20:10 | 2019-12-29T22:05:11 | 171,947,972 | 52 | 14 | BSD-3-Clause | 2019-12-29T22:05:13 | 2019-02-21T21:26:53 | C | UTF-8 | C | false | false | 2,114,866 | h | /**
******************************************************************************
* @file stm32mp153cxx_cm4.h
* @author MCD Application Team
* @brief CMSIS stm32mp153cxx_cm4 Device Peripheral Access Layer Header File.
*
* This file contains:
* - Data structures and the add... | [
"me@thomas-gravekamp.nl"
] | me@thomas-gravekamp.nl |
66a88fdf6b53a54cc9dbb618f39a03c9c60647e9 | a3c604effcb34c7a9594a7a37e2ec618aab4c74f | /reference/cvs/aleph314/inc/version.h | 6cb054154c7c95b32bb6ff0ddd6b7a642060d89f | [] | no_license | jvonwimm/aleph64bit | 09d9d48db51ed8c5f868b5409c6b7a78bfff8e6f | a779f00fd147a2fd3b1f81e0d65ca09509045c88 | refs/heads/main | 2023-02-04T06:10:49.338430 | 2020-12-16T00:59:48 | 2020-12-16T00:59:48 | 301,156,974 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 144 | h | C - ALEPHLIB 314.2 20000128
REAL ALEVER
PARAMETER (ALEVER = 314.2)
C
#if defined(DOC)
ALEVER = Alephlib version#
#endif
| [
"jvonwimm@protonmail.com"
] | jvonwimm@protonmail.com |
b78e60c5bc7138c116a4948f635eb0dd9504a4b3 | ace7bf69cba943b83d6fc9b8e254f6e2117bea5e | /libunit/libft/ft_strjoin.c | 38ec5a44f67f4f024c2d61c6741a54670892dc1f | [] | no_license | mdubus/Rushes | ae74b048fc752ff0c78648c3f8e9e21f40944a6d | 1840a694cb88d7491458a2c008b19add5dcfdfb9 | refs/heads/master | 2021-09-03T08:47:16.231614 | 2018-01-07T18:33:54 | 2018-01-07T18:33:54 | 114,122,726 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,220 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: ... | [
"mdubus@student.42.fr"
] | mdubus@student.42.fr |
56a5e0d9288e06c01b091965798b3597a65dbc82 | 67eac20379df329d55d74f4e36ac206f7d50ec75 | /code_examples/OneEye_DAS_Oscilloscope_1_KIT_TC397_TFT/Libraries/iLLD/TC39B/Tricore/_Impl/IfxCif_cfg.h | 47ae50aa67fd50ee3096490b2176b6b58172280f | [] | no_license | Infineon/AURIX_code_examples | d0adb2daa86df1eae52aac6451fd5a9d4ba1b5eb | a1623634511d4463537aac33bf791c37fbb17f1c | refs/heads/master | 2023-04-13T01:31:03.043401 | 2023-04-03T11:53:03 | 2023-04-03T11:53:03 | 192,314,276 | 365 | 278 | null | null | null | null | UTF-8 | C | false | false | 2,995 | h | /**
* \file IfxCif_cfg.h
* \brief CIF on-chip implementation data
* \ingroup IfxLld_Cif
*
* \version iLLD_1_0_1_12_0_1
* \copyright Copyright (c) 2013 Infineon Technologies AG. All rights reserved.
*
*
* IMPORTANT NOTICE
*
* Use of this file is subject to the terms of use ag... | [
"matteo.vitturi@infineon.com"
] | matteo.vitturi@infineon.com |
15f8833101f73d57ccdb0f9f65908a5421f1569e | 72bff4d908afe77a33b17f5639535b20867bdbe0 | /src/myf.c | f113e7f131058f23e0ab32278af46e18d098342e | [] | no_license | JoanaMota/joana_pari2017 | 48bb08e883b7f01b84fb72416e1b7c444c952114 | bd236d76d09a036760f671e3789f892e85447ae5 | refs/heads/master | 2023-02-21T15:38:46.266517 | 2021-01-26T23:58:41 | 2021-01-26T23:58:41 | 113,296,583 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,722 | c | /**
* @file myf.c
* @brief Programa Principal
*
* Descrição mais detalhada do ficheiro
*
* @author Miguel Gaspar, miguel.gaspar124@ua.pt
*
* @internal
* Created 27-Sep-2017
* Company University of Aveiro
* Copyright Copyright (c) 2017, Miguel Gaspar
*
***********************... | [
"joancarvalhomota@ua.pt"
] | joancarvalhomota@ua.pt |
a9912753886a0b3c9e6e614d8bfa930fab3392ea | a783f09f18fbd403771d0c4ef573954d478aeb3e | /core/dev/fram.h | 43dd4d289b6713f68506a1bdc94345cd8c101aeb | [
"BSD-3-Clause"
] | permissive | hildebrandt-carl/RAD_Contiki | 87341d9c35a3e73d058d81492c5b5196ce4056a4 | 2aa12bcc5f651eb019b3ce8943eab768ac372d8d | refs/heads/master | 2021-08-28T00:58:37.213524 | 2017-12-11T00:24:41 | 2017-12-11T00:24:41 | 113,383,731 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,476 | h | /*
* Copyright (c) 2015, Swiss Federal Institute of Technology (ETH Zurich).
* 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. Redistributions of source code must retain the above copy... | [
"hildebrandt.carl@outlook.com"
] | hildebrandt.carl@outlook.com |
ba3ff28989d1913fba42a7724b9d7d522d4507fb | 34fe76936504a257df4a943aafa69bb67c0d96b6 | /Sprint 10/t02/src/main.c | 58e28229aab2bbaf0a7fbd6e1abda9aacad2f67c | [] | no_license | SansNumbers/Stage01_c_learning | c7ef778ee29b87794b4610b1a18c37e99052bde3 | 304125483012a4a9d7e339bef3d82fc8129ff4a0 | refs/heads/master | 2023-03-28T13:41:07.524730 | 2021-03-29T14:41:25 | 2021-03-29T14:41:25 | 351,467,464 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 876 | c | #include "header.h"
int main(int argc, char *argv[]) {
if (argc == 1) {
char buf[1];
int status = read(0, buf, 1);
write(1, buf, 1);
while (status != 0) {
status = read(0, buf, 1);
write(1, buf, 1);
}
return 0;
}
for (int i = 1; i... | [
"iantypin@c1r5p5.khpi.ucode-connect.study"
] | iantypin@c1r5p5.khpi.ucode-connect.study |
3e56ce15817081369ba335553ae7fab395e8cfdd | 76b1e87d23b002e4198c3cead4b53f42ac8c5c9a | /axi_full_sim/axi_slave_1.0/drivers/axi_slave_v1_0/src/axi_slave.c | b1f24ef65aad0fe73973f4c263bfca0f49542786 | [] | no_license | hossamfadeel/Verilog_Module | 443f03bcaf0f079234f5fef16b8a65747d2b20fc | d73c47d3fe6d89ddb73f0213239a1693594785c1 | refs/heads/master | 2022-04-14T18:05:39.566380 | 2020-03-03T02:39:17 | 2020-03-03T02:39:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 182 | c |
/***************************** Include Files *******************************/
#include "axi_slave.h"
/************************** Function Definitions ***************************/
| [
"22903193+WayneGong@users.noreply.github.com"
] | 22903193+WayneGong@users.noreply.github.com |
5bafb3432dc4e26f53cd59e1cf1cf6eaf42606f6 | 4b1d78654341f2f1d1b1ce50288b05808d6c3b22 | /pingProgram/ping_program.c | a3520d5858a2f42579edb67db5b4205209c2738e | [
"Apache-2.0"
] | permissive | jogilsang/pingProgram | 2d9cceae00f5e756f7b4e3c0ba2bb02c2e6b18c5 | cb053622b009938f3b174c9bc464a318467b89de | refs/heads/master | 2020-04-01T05:27:34.351462 | 2018-10-13T19:24:12 | 2018-10-13T19:24:12 | 152,904,111 | 0 | 0 | null | null | null | null | UHC | C | false | false | 21,539 | c | #include <windows.h>
#include <stdio.h>
#define PING_BUTTON_1 1
#define PING_BUTTON_2 2
#define PING_BUTTON_3 3
#define PING_BUTTON_4 4
#define PING_BUTTON_5 5
#define CMD 11
#define SYSTEM 22
#define FIREWALL 33
#define REMOTE 44
#define DEVMGMT 55
#define INETCPL 66
#define SETTING_BUTTON 100
#d... | [
"jogilsang@gmail.com"
] | jogilsang@gmail.com |
4be3091d07099e46e2c851b7a21acd94129d3809 | 5bb92ca8aad9a1ae979430dbecc8fa3c6031bf97 | /Source/pwm_audio.c | 49b392363d44c5882467eee81e8e21eb947884eb | [
"MIT"
] | permissive | mertguner/Waw-Player-From-SDCard-Wtih-PIC18F2550 | c1689756adc8c46b34405ed6c4603b7d1f31d2d8 | 904f7158b55da63f7cfc15f3f2d4ec51dd2569b1 | refs/heads/master | 2020-04-11T15:18:30.427572 | 2018-12-15T09:35:17 | 2018-12-15T09:35:17 | 161,887,356 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,655 | c | /****************************************************
PIC18 PWM Audio
PIC18F SD/MMC WAV Audio Player
yus - http://projectproto.blogspot.com/
May 2010
PIC PWM Calculator
http://www.micro-examples.com/public/microex-navig/doc/097-pwm-calculator.html
PIC Timer Calculator
http://eng-serve.com/pic/pic_timer.ht... | [
"noreply@github.com"
] | mertguner.noreply@github.com |
8cab4182caf9f54c8d146f0ca96f2f0e31dd255f | 70af3170c92fa75c51f3011258ef1e8e6d7071c0 | /drv/bus/usb2/misc/a.c | b2abc2541869d4ea57526c6fe9d8e7da14b4f85a | [] | no_license | ZYQ634455388/NetbasOS_Kernel | ddc5f9a24005629d362e0d7cfce1dc5a9d6ea054 | 1323720c4e3632b89c12e54392712cf4af515149 | refs/heads/master | 2021-12-04T06:20:14.219091 | 2015-02-03T09:22:24 | 2015-02-03T09:22:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,369 | c | #include <stdio.h>
struct sysinit {
unsigned int subsystem; /* subsystem identifier*/
unsigned int order; /* init order within subsystem*/
void (*func) __P((void *)); /* init function*/
void *udata; /* multiplexer/argument */
si_elem_t type; /* sysinit_elem_type*/
};
typedef int (*modeventhand_t)(void* ... | [
"easion@gmail.com"
] | easion@gmail.com |
a268f9a1d3bbd9365daa791909521f14103d0a33 | fad392b7b1533103a0ddcc18e059fcd2e85c0fda | /build/px4_msgs/rosidl_generator_c/px4_msgs/msg/collision_report.h | 0728aad08f5adacc02893441d22aaddcf011b4c9 | [] | no_license | adamdai/px4_ros_com_ros2 | bee6ef27559a3a157d10c250a45818a5c75f2eff | bcd7a1bd13c318d69994a64215f256b9ec7ae2bb | refs/heads/master | 2023-07-24T18:09:24.817561 | 2021-08-23T21:47:18 | 2021-08-23T21:47:18 | 399,255,215 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 458 | h | // generated from rosidl_generator_c/resource/idl.h.em
// with input from px4_msgs:msg/CollisionReport.idl
// generated code does not contain a copyright notice
#ifndef PX4_MSGS__MSG__COLLISION_REPORT_H_
#define PX4_MSGS__MSG__COLLISION_REPORT_H_
#include "px4_msgs/msg/collision_report__struct.h"
#include "px4_msgs/m... | [
"adamdai97@gmail.com"
] | adamdai97@gmail.com |
e968e27a15d773e9dc0eeebc07914168d6484193 | cc5a4a5d2e96fe8e411ac9a6fb988dc501351e2d | /实验7:进程控制和通信/原程序文件及可执行文件/原程序文件/process3.c | 6d43b48995345a06eac24fef355b726c225db580 | [] | no_license | wuzy38/MyOS | 01238f90f7e4adbf9e22edb4e56f5e2ccc106c65 | 63391a7c8e7df55f32734e675d4563c97265cd2d | refs/heads/master | 2021-08-28T14:29:51.485347 | 2021-08-07T05:13:38 | 2021-08-07T05:13:38 | 239,441,317 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 427 | c | //第三个子程序
//在屏幕左下区域显示信息
//C程序
//位于0x3000
#include "io.h"
#include "time.h"
__asm__(".code16gcc");
char inf[] = "Xx XxXxxx";
void drawLfDn()
{
int i, j;
for(i = 0; i < 9; i++)
{
char cr = inf[i];
if(cr == ' ') continue;
j = 13;
Setchar(13,14+i,cr);
while(j++ < 18)
{
timedelay(5);
Setchar(j-1,14+i,'... | [
"843404313@qq.com"
] | 843404313@qq.com |
6a2e740cc1164305189a82a8842961c26398b022 | b3927059edff450f81b1b0fdb452faa7586779e8 | /Stm32f407_CubeMX/Delay_US_MS/Src/stm32f4xx_it.c | 653a493625eed684de2aeef9f3ca34e95f2189da | [] | no_license | NHQuang58/stm32f407vg | edb2e636864c5ffd9958b54f804ac495e5d5035f | d4e1df02c31cc1db8805e0c1876227292a31fb67 | refs/heads/master | 2023-04-07T05:39:38.831345 | 2021-04-24T09:03:27 | 2021-04-24T09:03:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,071 | c | /**
******************************************************************************
* @file stm32f4xx_it.c
* @brief Interrupt Service Routines.
******************************************************************************
*
* COPYRIGHT(c) 2021 STMicroelectronics
*
* Redistribution and use in source... | [
"qn052289@gmail.com"
] | qn052289@gmail.com |
5272f3d17a5ec89b2f305ecadbab0f8711258f86 | af212d86c0917b6e0dbec2a4065cd8868dc53f53 | /0x18-dynamic_libraries/100-atoi.c | 53217b1151b85cb0104ee44fb4396447135c92f0 | [] | no_license | RobARC/holbertonschool-low_level_programming | 24094c485a8f263bca70f0b0193215a7463c2788 | 46eb4c04cab17bd4c4c6c7d95e4f34c0335a1054 | refs/heads/master | 2023-04-14T18:27:17.697738 | 2021-04-21T15:33:43 | 2021-04-21T15:33:43 | 296,149,257 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 474 | c | #include "holberton.h"
/**
* _atoi - Convert string to an integer.
* @s: Pointer to a character string.
*
* Return: void.
*/
int _atoi(char *s)
{
int sign;
unsigned int num;
char *temp;
temp = s;
num = 0;
sign = 1;
while (*temp != '\0' && (*temp < '0' || *temp > '9'))
{
if (*temp == '-')
sign *= -1;
te... | [
"rrondoc@gmail.com"
] | rrondoc@gmail.com |
210a23516db643676391a641d2162b03dba0d137 | 12b083e76d3cdb909d4f11d27fa9fec159c7bce1 | /Source code/S32DS Projects/S32K118F256/Generated_Code/clockMan1.c | a652e8b31653161f1c316508b3eeed12f0f05d92 | [] | no_license | hao507/S32K1xx-CSEc-Tool | 15c42b789d55cc1aab0b4c5500403dcc748edd7c | 192de7dd165c231eb2de73871e2f3402a6b2e0bf | refs/heads/master | 2022-11-25T13:15:48.156487 | 2020-08-06T01:07:29 | 2020-08-06T01:07:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,087 | c | /* ###################################################################
** This component module is generated by Processor Expert. Do not modify it.
** Filename : clockMan1.c
** Project : S32K118F256
** Processor : S32K118_64
** Component : clock_manager
** Version : Component SDK_... | [
"yunchuan.wang@nxp.com"
] | yunchuan.wang@nxp.com |
aa44e002339615cc00471c56333476ea0e9f3bae | 2d91762d8c161a28104c9e6feddc99e62d2f675c | /mycloud code/server/mycloudserver.h | 216a780e4a25e2fa44f5923b27adf26efbc0807f | [] | no_license | tylerprice1/3712 | da8755f2f458ac496899fa610ef0de2669df9800 | f3986d3d6447287ecf71dab82521f070eb13f6eb | refs/heads/master | 2020-03-11T10:23:22.502504 | 2018-04-28T03:11:44 | 2018-04-28T03:11:44 | 129,941,207 | 0 | 0 | null | 2018-04-27T16:42:34 | 2018-04-17T17:28:04 | C | UTF-8 | C | false | false | 749 | h | #ifndef mycloudserver_h
#define mycloudserver_h
#include "mycloud.h"
int mycloudserver_listen (const char * port);
int mycloudserver_readRequest (int, struct mycloud_request *);
int mycloudserver_writeResponseToRequest (int, const struct mycloud_request *, const struct mycloud_response *);
void mycloudser... | [
"tyler.price1@outlook.com"
] | tyler.price1@outlook.com |
8c32238a62dd01d2798de08beebe93135122cda3 | c7be5b45ee13d3f2bad32902f8602ee00dff13c0 | /numeric/AKWF_0293.h | 136733ecca2985500238c0753981e98a7dae15a9 | [] | no_license | DatanoiseTV/AKWF_WaveForms_1024 | d38ed856416b093d3b0c0b7ef8203cd3fdf20f20 | 54c9d55511f007feacfac3d437e0eb1d1f214d5e | refs/heads/master | 2021-01-19T22:01:48.646095 | 2014-07-08T12:34:35 | 2014-07-08T12:34:35 | 21,574,675 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 7,406 | h | // Converted by AKWF2Teensy from AKWF_0293.wav.
// AKWF2Teensy - Beerware by Datanoise.net.
const int16_t AKWF_0293[1025] = {
0, 0, 0, -1, 0, 0, -2, 0, 6,
-10, -12, 68, -22, -1351, -5563,-13445,-23340,-31305,-32768,
-28208,-17388, -4097, 8851, 19700, 27508, 31841, 32735, 30... | [
"github@ext.no-route.org"
] | github@ext.no-route.org |
a804ba8706f68b6236c106a793f4b5fec6d5da60 | 8ba3ca1c5a0227fb2ef73b36e5ecde8d059750a2 | /project5/page_table.h | 595c31af22cf67a81f39d4cbd83b5dc03e15f082 | [] | no_license | jmarvin1/osproject4 | 94c31a5778dde90a16aa5f475dc1da0aa9604709 | 12378de0c88d42c71f4c138db5acb4128f017f5e | refs/heads/master | 2021-01-22T23:26:36.221098 | 2017-04-30T21:23:17 | 2017-04-30T21:23:17 | 85,640,361 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,991 | h | #ifndef PAGE_TABLE_H
#define PAGE_TABLE_H
#include <sys/mman.h>
#ifndef PAGE_SIZE
#define PAGE_SIZE 4096
#endif
struct page_table;
typedef void (*page_fault_handler_t) ( struct page_table *pt, int page );
/* Create a new page table, along with a corresponding virtual memory
that is "npages" big and a physical mem... | [
"jlacher1@nd.edu"
] | jlacher1@nd.edu |
4136a4e40ad27355b0bcef49a56434715aedb610 | 2b1729ee2db6b6f473b9459d7b93d177ed91cd66 | /cpp/vulkan_demo/src/renderer/renderer_common.h | 6d03488acd0bc4df58baebd39f0788ae7ff553c7 | [] | no_license | LiamMehle/playground | d9a36b9faaca2b37e981b0b83b9bb03326540996 | 179f9bf7acba98586097cf800f5bd9673c5a2e91 | refs/heads/master | 2023-03-04T11:01:38.597812 | 2020-12-30T12:53:31 | 2020-12-30T12:53:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 131 | h | #ifndef RENDERER_COMMON_H
#define RENDERER_COMMON_H
#include "../renderer.h"
#include <stdlib.h>
#include "../io_helper.h"
#endif | [
"liam@limar.tk"
] | liam@limar.tk |
7652344e192a9351fcebd5bb746f5954892e1c5a | 96d585c1f6db13fa639373dc713bc425595fcf43 | /max1.c | 53425f16e755687c9966ccb08b0a261db7f1fff1 | [] | no_license | charus120/guvi_charu | 82ef09f5a7a370bfe44948d390d0b7de459de8d6 | 3aef15f8658499ff3116f16adb3d861028f3a59a | refs/heads/master | 2021-05-11T20:07:27.534256 | 2018-05-06T17:20:25 | 2018-05-06T17:20:25 | 117,431,865 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 214 | c | #include<stdio.h>
int main()
{
int a[10],i,max,n;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
max=a[0];
for(i=1;i<n;i++)
{
if(a[i]>max)
{
max=a[i];
}
}
printf("%d",max);
return 0;
}
| [
"noreply@github.com"
] | charus120.noreply@github.com |
e2103fecef959ab0e137ed149b48d8e1c9e1743e | 697569469cf603ee07b4606fe9e78545916d8aa7 | /Seven_segment_ECU.c | 6fcdd39484d0256ebfba0609aa5e1f9edd460c5b | [] | no_license | mimo56111/SDK_GROUP_ZAG2 | 49f840ad13e74bdfd0e324e7664dc106ae219992 | 939717ec37b2f72ebbdf7d4c6e9ec9c836d6334e | refs/heads/master | 2022-11-27T11:25:35.549868 | 2020-07-29T16:14:22 | 2020-07-29T16:14:22 | 277,784,354 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,489 | c | /*
* Seven_segment_ECU.c
*
* Created: 7/6/2020 12:21:27 PM
* Author: Mahmoud Ayman
*/
#include "Seven_segment_ECU.h"
#define Low_Nibble 0
#define High_Nibble 1
#define OUTPUT 1
#define INPUT 0
u_int8 mode;
u_int8 nibble;
u_int8 port;
void Seven_segment_Init(u_int8 Mode,u_int8 portnum,u_int8 Nibble){
if (Mod... | [
"mahmoudayman20755@gmail.com"
] | mahmoudayman20755@gmail.com |
70f9c45d5bcd32257b172b28042b130d244bad24 | b46290375f470bb1db2ac8644e67c0c075143883 | /reqh/reqh_service.c | 344dd713e2497a38a847ba56bb74baaa108ed80c | [
"Apache-2.0"
] | permissive | pasis/cortx-motr | daa6877f9c50fad00857eb333583d12abfb57d37 | 6ae32f6e132c0ec6afd628d2796c89b16ef94440 | refs/heads/main | 2023-04-18T05:52:00.973098 | 2021-03-26T16:02:25 | 2021-03-26T16:02:25 | 305,506,670 | 1 | 0 | Apache-2.0 | 2020-10-19T20:34:38 | 2020-10-19T20:34:37 | null | UTF-8 | C | false | false | 41,097 | c | /* -*- C -*- */
/*
* Copyright (c) 2013-2020 Seagate Technology LLC and/or its Affiliates
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE... | [
"cortx@seagate.com"
] | cortx@seagate.com |
2e520cc17c4ee81b469a108b53602a8e27465591 | d96bd06c880bb5200f22cb34466122ef446361e1 | /functions.c | 5c8b90c5bab64792fb0f5e95028f2cae0bca948a | [
"BSD-2-Clause"
] | permissive | shubhampattnaik/Mp3_Tag_Reader | fecdcfc102e0d2b0e52f85a3f1048f0af95e32a3 | 13469e9e74f6ea446fcac662094e57b3669b98f6 | refs/heads/master | 2020-05-06T15:33:48.715142 | 2019-04-08T17:10:27 | 2019-04-08T17:10:27 | 180,196,202 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,108 | c | #include "main.h"
/* Print usage message */
void print_usage(void)
{
printf("Error: ./mp3_tag_reader: Invalid Arguments\n");
printf("Usage: ./mp3_tag_reader -h for help\n");
return;
}
/* Print help message */
void print_help(void)
{
char *filename = "help.txt";
int ch; // Store data from file here... | [
"noreply@github.com"
] | shubhampattnaik.noreply@github.com |
4ee06427bbcdb88c9c4eb177cd732c59af96649f | 3bdfc075d277e356cb27426671269199246fc73c | /libft/ft_lstdelone.c | 29d7cda783a70f7c47c6b1869f07426dc6bcab0e | [] | no_license | Fourse/42 | b6d2cdea7e9ef88704c8904a2413ec63e23088f8 | b2e51de0fe9adef844580643a0c9274743775669 | refs/heads/master | 2020-05-05T11:08:01.850897 | 2019-11-18T17:13:07 | 2019-11-18T17:13:07 | 179,976,300 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,074 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone.c :+: :+: :+: ... | [
"rloraine@mi-t5.21-school.ru"
] | rloraine@mi-t5.21-school.ru |
cb1507970cb04dbc9d0de9af01cc8529c3a8a54a | 1f63dde39fcc5f8be29f2acb947c41f1b6f1683e | /Boss2D/addon/ffmpeg-n3.2.2_for_boss/libavfilter/vf_hysteresis.c | 8f05b716c9d456d2c3d1915ee02feb4614f7efe1 | [
"LGPL-3.0-or-later",
"IJG",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"LGPL-3.0-only",
"GPL-2.0-or-later",
"MIT",
"GPL-3.0-only",
"GPL-2.0-only",
"Apache-2.0",
"LicenseRef-scancode-other-permissive",
"LGPL-2.1-or-later",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.1-only"
] | permissive | koobonil/Boss2D | 09ca948823e0df5a5a53b64a10033c4f3665483a | e5eb355b57228a701495f2660f137bd05628c202 | refs/heads/master | 2022-10-20T09:02:51.341143 | 2019-07-18T02:13:44 | 2019-07-18T02:13:44 | 105,999,368 | 7 | 2 | MIT | 2022-10-04T23:31:12 | 2017-10-06T11:57:07 | C++ | UTF-8 | C | false | false | 13,132 | c | /*
* Copyright (c) 2013 Oka Motofumi (chikuzen.mo at gmail dot com)
* Copyright (c) 2016 Paul B Mahol
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; ... | [
"slacealic@gmail.com"
] | slacealic@gmail.com |
18745923dd7904819769e255b632d19eb1664290 | fa24dcead4e5c3bacde49b1a3f052d10e60e194a | /sys/src/utils/cmd/md5sum.c | 37a681ef6a081f6562b071fc86eeb83d5202ba5e | [
"MIT"
] | permissive | xphung/plan9_webasm | 5e22d11d983fe131fcdae63e586b140839603dfc | d30bb1f3a2a52927d4bcb94b3e3d8279eab1af35 | refs/heads/master | 2023-02-15T10:24:43.073367 | 2018-12-20T05:10:38 | 2018-12-20T05:10:38 | 161,900,372 | 18 | 1 | MIT | 2023-01-30T00:58:26 | 2018-12-15T11:57:46 | C | UTF-8 | C | false | false | 1,090 | c | #include <u.h>
#include <libc.h>
#include <bio.h>
#include <libsec.h>
#pragma varargck type "M" uchar*
static int
digestfmt(Fmt *fmt)
{
char buf[MD5dlen*2+1];
uchar *p;
int i;
p = va_arg(fmt->args, uchar*);
for(i=0; i<MD5dlen; i++)
sprint(buf+2*i, "%.2ux", p[i]);
return fmtstrcpy(fmt, buf);
}
static void
su... | [
"xan.phung@gmail.com"
] | xan.phung@gmail.com |
8ce5832ca939313f595f9bd835b20b7469f8176e | 5ae041c32e0f3951277a770ef67a6de493501bc5 | /nini/keymap.c | 5565561c901316cc2ddff35221488a164ef54a4b | [] | no_license | fifididi/keymaps | 7f67b8c2e152ca653afea1e8dc4233ac0cdfc9d2 | 8bbb32315193c19c70aceaddd788f47236db2291 | refs/heads/master | 2021-06-27T09:26:07.496506 | 2021-06-18T11:26:19 | 2021-06-18T11:26:19 | 235,765,763 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,047 | c | #include QMK_KEYBOARD_H
// LAYERS
#define QWERTY 0 // AZERTY layer
#define _QW _QWERTY
#define _FUNCTION 1 // Function layer
#define _FN _FUNCTION
#define _CONTROL 2 // Control layer
#define _CN _CONTROL
#define nini 3
#define unicode 4
#define MO_FN MO(_FUNCTION)
#define NINI MO(nini)
#define U... | [
"nini@underflo.ws"
] | nini@underflo.ws |
6bf876630aef3b006c71f1c7b95e20faaee5b9a6 | db3e46b26b905d9e264dc35fb79d6ee584fb9304 | /obstacle_avoid_switch_case/obstacle_avoid_switch_case.c | d145b7150d2ee24f0f4825639fc4b69c2199e7b3 | [] | no_license | hphilamore/ILAS_robotics_scribbler | c3b4a329fd3194f5cee405daad1d908dbb36f8ef | cf7b2eb7012cb08c02f0ef0b6b2d8bc72d6ceb6b | refs/heads/master | 2020-04-17T10:27:59.021218 | 2019-01-19T03:32:00 | 2019-01-19T03:32:00 | 166,502,294 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,261 | c | a/*
Blank Simple Project.c
http://learn.parallax.com/propeller-c-tutorials
*/
#include "simpletools.h"
#include "s3.h"
#include "scribbler.h"
#include "servo.h"
#include "ping.h"
#include "math.h"
static float encoder_vals[9] = {0, 0, 0, 0, 0, 0, 0, 0, 0}; // an array to hold encoder data
void encoder_update... | [
"hemmaphilamore@gmail.com"
] | hemmaphilamore@gmail.com |
45509575813087ddf59999b8eed1f6e4355ec0b5 | ec8e1dd6a69c3d30fd2005ca0b9c959c5932f3b7 | /NEWTCS/LINEAR-SEARCH.C | 3d944ecd0d42e20492fa81ee0a4f63da4994a271 | [] | no_license | Abhishekmishra-17/C-programs | 16d92703daad4e073b7699842a1e7158a4072822 | 85d08a280dee31d520a9b658d875a8715ed8fb59 | refs/heads/master | 2023-01-31T18:05:00.574301 | 2020-12-15T20:35:44 | 2020-12-15T20:35:44 | 256,039,641 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 494 | c | #include<stdio.h>
#include<conio.h>
void main()
{
int arr[10],n,item,i,j=0;
clrscr();
printf("Enter the size of array\t");
scanf("%d",&n);
printf("Enter the element of array\t");
for(i=0;i<n;i++)
{
scanf("%d",&arr[i]);
}
printf("Enter the item which you want to be search\t");
scanf("%d",&item);
for(i=0;i... | [
"noreply@github.com"
] | Abhishekmishra-17.noreply@github.com |
ada54d751952344318a573c5b3b873051815272c | b008a6ca2667879dddb2d18ae9380bf7bbcd0ca5 | /MFCApplication1/resource.h | 24fb2b29a838f1e164460f8e752bafd32d508fd3 | [
"MIT"
] | permissive | WUST-mengqinyu/Spot-Information-Manager | cfd184b603bb73587358c89d103cd26069b9a671 | 72f10102911306065e25ed735d349b51cd7e58d7 | refs/heads/master | 2020-04-21T18:09:51.997383 | 2019-03-13T12:20:50 | 2019-03-13T12:20:50 | 169,759,528 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,334 | h | //{{NO_DEPENDENCIES}}
// Microsoft Visual C++ 生成的包含文件。
// 供 MFCApplication1.rc 使用
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_MFCAPPLICATION1_DIALOG 102
#define IDR_MAINFRAME 128
#d... | [
"2017051104011@std.uestc.edu.cn"
] | 2017051104011@std.uestc.edu.cn |
5575ac5a8938a1bf2dbba3e93b7873f29074f927 | ea4e3ac0966fe7b69f42eaa5a32980caa2248957 | /download/unzip/webdavfs/webdavfs-112.1/mount.tproj/http.c | cb3bd719860954651de2310175c0811fed603edd | [] | no_license | hyl946/opensource_apple | 36b49deda8b2f241437ed45113d624ad45aa6d5f | e0f41fa0d9d535d57bfe56a264b4b27b8f93d86a | refs/heads/master | 2023-02-26T16:27:25.343636 | 2020-03-29T08:50:45 | 2020-03-29T08:50:45 | 249,169,732 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 112,804 | c | /*-
* Copyright 1997 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that both the above copyright notice and this
* permission notice appear in all copies, that both the a... | [
"hyl946@163.com"
] | hyl946@163.com |
a76bc69e0862b03b43437c481ea2056c671de248 | 19e356aa308d3adef259a912b29950a3af37a2e2 | /Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_ObjectModel_ReadOnlyCollection_1_189MethodDeclarations.h | 36cec9f4af341ede2ca900197ddb97dd31e50371 | [] | no_license | minuJeong/AcocGame | 87314d914b72290fff347cc590ae03669d10d6ba | 24eeaba66393890998d55a633fcbd17d984549b4 | refs/heads/master | 2021-03-12T23:51:57.818655 | 2015-03-29T12:44:58 | 2015-03-29T12:44:58 | 32,936,460 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,601 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Collections.Generic.Dictionary`2<System.String,Parse.ParseRole>>>
struct ReadOnlyCollectio... | [
"minu.hanwool@gmail.com"
] | minu.hanwool@gmail.com |
4839773ad51edd0ca0ce8ab01ecffd31c7f7b1ce | f252f192403bfc1edffc7329d0aeace8046590da | /code/crypto/bn_mul.h | fc38611a9fa01eae1b1f9437a0d71514ec671741 | [] | no_license | m4rm0k/0lib | 3307786a5446812bd732c0b8f0bd4e8819c18d19 | 0aedf47f51215d0afb50e40d0e2a05d97bf32b81 | refs/heads/master | 2020-05-31T15:38:44.431868 | 2019-03-28T06:20:02 | 2019-03-28T06:20:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,548 | h | #ifndef POLARSSL_BN_MUL_H
#define POLARSSL_BN_MUL_H
#include "bignum.h"
#if !defined(MULADDC_CORE)
#if defined(POLARSSL_HAVE_UDBL)
#define MULADDC_INIT \
{ \
t_udbl r; \
t_uint r0, r1;
#define MULADDC_CORE ... | [
"darkabode@tuta.io"
] | darkabode@tuta.io |
48d89869116e35538be81b7370e38393b60aca39 | 83214753e9183327e98af0e6768e9be5385e5282 | /d/hefei/npc/zhang.c | 0d7bb173eea2f64d4fc8e81cd8813c2f5151f904 | [] | no_license | MudRen/hymud | f5b3bb0e0232f23a48cb5f1db2e34f08be99614e | b9433df6cf48e936b07252b15b60806ff55bb2f3 | refs/heads/main | 2023-04-04T22:44:23.880558 | 2021-04-07T15:45:16 | 2021-04-07T15:45:16 | 318,484,633 | 1 | 5 | null | null | null | null | GB18030 | C | false | false | 714 | c |
inherit NPC;
inherit F_DEALER;
void create()
{
// reload("hf_zhang");
set_name("张掌柜",({ "zhang zhanggui","zhang"}) );
set("gender", "男性" );
set("age", 42);
set("long", "这是裁缝店的老板,他这里的衣服很好。\n");
set("shop_id",({ "zhang zhanggui","zhang"}) );
set("combat_exp", 200000);
set("str", 25);
... | [
"i@oiuv.cn"
] | i@oiuv.cn |
e6976796c2a1317f715899b9aab91f66b1f44b0c | 0312ca4db43ae6f3bedaa54f440f6cb9298b9350 | /libft/ft_is_alpha.c | 842e881b89831476d76b803d37750d5213ffc161 | [] | no_license | Team-42minishell/minishell | 3fab217f13f5e7cd434376d5574b9321eacdf983 | bac8b492d8aef1c4d05a6d2a749b5398bd445497 | refs/heads/master | 2023-01-09T18:08:53.664317 | 2020-11-08T12:47:32 | 2020-11-08T12:47:32 | 296,818,545 | 0 | 0 | null | 2020-10-29T22:44:25 | 2020-09-19T08:10:57 | C | UTF-8 | C | false | false | 1,019 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_alpha.c :+: :+: :+: ... | [
"k8440009@gmail.com"
] | k8440009@gmail.com |
711a6b9d365258180ad0112c59bb6fcf9577339f | 32f6bcb74da2ecf3a8af1cfbe90d4143dead7507 | /0x06-pointers_arrays_strings/1-strncat.c | 28447f44a469c04298ec06fe9194516d1b9ed79b | [] | no_license | luismedinaeng/holbertonschool-low_level_programming | d894350243aedaa2d659ec53b6ae10c3e2840691 | 9bc6eb5aabad4e4d4370f5e61c5228997f8499d8 | refs/heads/master | 2020-07-28T09:40:38.968388 | 2020-04-17T04:57:18 | 2020-04-17T04:57:18 | 209,383,560 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 433 | c | /**
* _strncat - Concatenate the first string with the second
* @dest: The destination pointer
* @src: The source pointer
* @n: bytes to use from src
*
* Return: The pointer to dest where the concatenate string
* is allocated
*/
char *_strncat(char *dest, char *src, int n)
{
int len = 0;
int i = 0;
while (d... | [
"malf95@hotmail.com"
] | malf95@hotmail.com |
4a061d35b9989726deb311beedebd6ad04973a98 | 3265043bb3475be23eb67fecd23de7d15f628a08 | /cs261/assigns/assignment2/testExercise.c | 831ad36783ce1c0280ccf169809f97bddc549a8e | [] | no_license | rthowerton/OSU-Coursework | 83b2b625b9a0860e736662a8fcc51bb5971bedb6 | 4ed3a315117b0c5a14ab47b2a5448e37447c2496 | refs/heads/master | 2021-06-16T22:00:50.177637 | 2021-04-15T18:01:10 | 2021-04-15T18:01:10 | 192,245,238 | 0 | 1 | null | 2021-04-15T18:01:11 | 2019-06-16T23:12:59 | TeX | UTF-8 | C | false | false | 1,339 | c |
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include "dynamicArray.h"
#include "stack_exercise.h"
void assertTrue(int predicate, char *message)
{
printf("%s: ", message);
if (predicate)
printf("PASSED\n");
else
printf("FAILED\n");
}
void check_modified(DynArr * d,int n){
int fail = 0;... | [
"howertor@oregonstate.edu"
] | howertor@oregonstate.edu |
148546535bd61e84ea1e789b1d6e7bce6b7ea145 | 18203d67187a1a1f7371756ee1fc66a8f805830e | /src/mcu_config.c | 9fd58a3a3838a604f361b8836a34124d9deae363 | [
"Apache-2.0"
] | permissive | StratifyLabs/STM32F723E-DISCO | 54ed794ba552bc39d58dc1508b4993e9af6a41b6 | 7bc88e304b17a99296e5dc8f1b48d68dc41ab0f5 | refs/heads/master | 2021-07-23T01:53:10.211845 | 2021-07-14T23:08:50 | 2021-07-14T23:08:50 | 125,131,862 | 0 | 1 | Apache-2.0 | 2019-04-29T14:35:14 | 2018-03-14T00:26:01 | C | UTF-8 | C | false | false | 1,791 | c | /*
Copyright 2011-2018 Stratify Labs, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, s... | [
"tyler.w.gilbert@gmail.com"
] | tyler.w.gilbert@gmail.com |
31b28129223ff637c3fbff0ba7eafa978c144d80 | b716098bd5191720f33ddd6fcda818568f004412 | /AMS/ThridParty/Y_KLine/Config/Constant/Y_StockChartConstant.h | 18019ec43754a534b29da244e67ccaba19668994 | [] | no_license | lucky5237/AMS | 624888c52a2b7e1cb1b38cd8777e77c4d11f8138 | 70fc5267ccf28a6267938a220625945bfd22952e | refs/heads/master | 2020-04-03T15:17:29.219297 | 2018-12-26T08:54:22 | 2018-12-26T08:54:22 | 155,357,951 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,993 | h | //
// Y_StockChartConstant.h
// BTC-Kline
//
// Created by yate1996 on 16/4/30.
// Copyright © 2016年 yate1996. All rights reserved.
//
#ifndef Y_StockChartConstant_h
#define Y_StockChartConstant_h
#endif /* Y_StockChartConstant_h */
/**
* K线图需要加载更多数据的通知
*/
#define Y_StockChartKLineNeedLoadMoreDataNotificatio... | [
"815093244@qq.com"
] | 815093244@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.