Skip to content
#

C

c logo

C is a programming language designed by Dennis Ritchie at Bell Labs. C is very widely used, straightforward, and can be compiled to a number of platforms and operating systems. C is an imperative language, with a small number of keywords and a large number of mathematical operators.

Here are 24,028 public repositories matching this topic...

boared
boared commented Sep 12, 2019

This part of the documentation seems wrong.

-c --count: Only print the number of matches in each file. Note: This is the number of matches, not the number of matching lines. Pipe output to wc -l if you want the number of matching lines.

I think the fix should be s/matching lines/matching files

Test file:

cat cat cat
dog
dog dog
bull
bull
bull

Test output:

ProgMetalSlug
ProgMetalSlug commented Dec 17, 2019

Is your feature request related something that is currently hard to do? Please describe.
Entering special characters in a terminal window (:terminal) is not straightforward. They can be copy-pasted from elsewhere but this is not convenient.

Describe the solution you'd like
In a terminal window, digraphs could be entered with CTRL-K, just like in a normal window. For example, doing

curl
hamstergene
hamstergene commented Dec 27, 2019

This program hangs forever

#include <curl/curl.h>

int main(int narg, char**argv) {
    curl_global_init( CURL_GLOBAL_ALL );
    CURLM* mh = curl_multi_init();
    curl_multi_poll( mh, 0, 0, /*timeout_ms*/-1, 0 );
}

I expected the following

The function interface takes signed integer (int) it must be ready to handle negative numbers.

curl/libcurl version

obs-studio
jean-airoldie
jean-airoldie commented Jun 6, 2019

Here is some general documentation improvement suggestion regarding flatbuffers. This is what I remember struggling with (from the top of my head). Also some point might be a little bit opinionated.

Some of the points were taken from #5387.

  • Regarding the builder:
    • The fact that its kinda like an arena allocator used for serialization.
    • The concept of offsets, what do they repre
wm4
wm4 commented Oct 4, 2019

We have CI integration (e.g. https://github.com/mpv-player/mpv/blob/master/.travis.yml), which mostly checks whether the code still builds.

We should implement further checks. For example, we there are various code quality tests we could run (static analysis and so on). Or we could add checks whether changes added by a pull request conform to the project's coding style.

Anyone who wants is i

evitalis
evitalis commented Dec 2, 2019

It looks like there is only a master branch for this repo at this time. This has caused any commits to affect PRs which now show large numbers of conflicts. Would it be possible to get a development branch or other instructions as to how PRs should be made to avoid this situation going forward?

curtisgray
curtisgray commented Jan 6, 2020

Library name: Simple-Web-Server

Library description: A very simple, fast, multithreaded, platform independent HTTP and HTTPS server and client library implemented using C++11 and Boost.Asio. Created to be an easy way to make REST resources available from C++ applications.

Source repository URL: https://gitlab.com/eidheim/Simple-Web-Server

Project homepage (if different from the source rep

duncanspumpkin
duncanspumpkin commented Oct 8, 2019

get_map_coordinates_from_pos and get_map_coordinates_from_pos_window are used to convert a screen coordinate position that a mouse is over into a map position that the game uses and tell you what item you are hovering over. It is quite complex how it works everything out but this refactor is about modifying its calling parameters. To make things easier to understand in the project we are tryin

Created by Dennis Ritchie

Released 1972

Website
www.open-std.org/jtc1/sc22/wg14
Wikipedia
Wikipedia

Related Topics

language
You can’t perform that action at this time.