crt Questions
22
Description of problem:
I'm trying to pull ubuntu from the public registry with this command :
docker pull ubuntu
And then i got this results (the previous command was working yesterday) :
"Er...
Rainbolt asked 9/2, 2016 at 10:37
5
Solved
I have some strings read from the database, stored in a char* and in UTF-8 format (you know, "á" is encoded as 0xC3 0xA1). But, in order to write them to a file, I first need to convert them to ANS...
3
I'm having .crt and .pem file with
-----BEGIN CERTIFICATE-----
MIIFSDCCBDCg........................................
-----END CERTIFICATE-----
and I want RSA key from this file.
anyone is ha...
4
Solved
I'm puzzled by the following difference in behaviour:
// suppose myfile.txt contains a single line with the single character 's'
errno_t res;
FILE* fp;
char cmd[81];
res = fopen_s(&fp, "D...
Amalbergas asked 24/6, 2010 at 18:31
2
How fix Error of crt1.o,crti.o in Build TinyCCompiler(TCC) from Source?
https://github.com/LuaDist/tcc
i'm test this at my Desktop system(ubuntu) and also test on server(centos).
at both OS , sho...
1
4
Solved
I'm trying to build an application as tiny as possible, and in doing so I'm trying to avoid use of the CRT by using Win API calls instead of standard C/C++ calls. Unfortunately, I'm still getting a...
Brotherly asked 27/1, 2014 at 3:26
1
Can someone please explain the difference between these? Internet lookup has confused me.
I am using VS2019.
4
I'm using VS2015 Community. I have obtained some C code that I'm trying to build. It is all in C and I have made a project as a Console Application.
When I build I get the below errors. The proble...
Refraction asked 23/9, 2015 at 12:53
1
Solved
I have been trying to solve Advent of Code 2020 day 13 part 2 task. I found a lot of hints talking about something called Chinese Remainder Theorem. I have tried some implementations following npm'...
Christenachristendom asked 13/12, 2020 at 13:7
2
Solved
5
Solved
I'm using Visual Studio c++ Compiler ( 2010 ), but the library has different implementation of ANSI C and POSIX libraries function.
What is the difference between ANSI C function and Windows CRT ...
Sterrett asked 20/5, 2013 at 10:46
2
Solved
So here's a fun one...
we have a few C libraries which should be platform independent, even though they were developed on linux, because they only rely on the c standard library as defined in ISO/...
6
Solved
I am trying to use _crtBreakAlloc in the Watch window as suggested in this link, but the value line says that 'identifier "_crtBreakAlloc" is unidentified' and it simply does not work.
What am I d...
Jasmin asked 20/5, 2015 at 18:46
8
Solved
I am facing this .dll library missing error:
This programme can't start because api-ms-win-crt-runtime-l1-1-0.dll
is missing. Try to reinstall this.
When I try to open an Microsoft Offi...
Bamboozle asked 21/10, 2015 at 17:30
1
I've been trying to use openssl to convert a .crt certificate to a .pem
openssl.exe x509 -in server.crt -out openssl.der -outform DER
After using that command, I get
unable to load certific...
Salvucci asked 24/6, 2014 at 15:57
2
Solved
I'm using MSVC to compile some C code which uses standard-library functions, such as getenv(), sprintf and others, with /W3 set for warnings. I'm told by MSVC that:
'getenv': This function or va...
Rollo asked 1/2, 2018 at 17:40
4
Solved
After VS2015 updated my project to the new Platform toolset v140, it fails to build due to a linker error : LNK1104 cannot open file 'libucrt.lib'.
It appears this library has been moved around d...
Sw asked 20/7, 2015 at 23:26
1
Solved
Is there a way of compiling C/C++ with Visual Studio 2015 without using any runtime library?
I need to compile without a runtime library because I'm creating my own runtime library (for my OS).
T...
Fearless asked 30/8, 2016 at 0:44
1
Solved
This is the code I am playing with right now:
# file-name: test.s
# 64-bit GNU as source code.
.global main
.section .text
main:
lea message, %rdi
push %rdi
call puts
lea message, %rdi
pu...
Mojica asked 14/4, 2016 at 19:49
4
I keep having linker errors of the following form:
libcmtd.dll msvmrtd.dll some element(ex: _mkdir ) already
defined...
and I don't know how to resolve them.
Here is a complete error message...
Donor asked 4/6, 2009 at 7:9
5
Solved
I'm working on a game with SDL in Visual Studio 2010. I came across the _CrtDumpMemoryLeaks() macro and thought I'd give it a go. Invoking _CrtDumpMemoryLeaks() does print memory leaks to the outpu...
Patterson asked 8/7, 2010 at 10:6
1
Solved
With Visual Studio 2015 I am no longer able to compile and link a simple C++ program using the command line tools.
Consider main.cpp:
#include <stdlib.h>
int main() { return 0; }
In previ...
Vermiculite asked 1/10, 2015 at 10:27
3
Solved
I have a shared library used by a another application beyond my control which requires *.so objects. My library makes use of sqlite3 which needs to be statically linked with it (I absolutely need a...
Wyck asked 9/7, 2011 at 11:13
1
Solved
It have often noticed that I would have been able to solve practical problems in C elegantly if there had been a way of creating a ‘virtual FILE’ and attaching the necessary callbacks for events su...
Mansfield asked 11/6, 2015 at 21:49
1 Next >
© 2022 - 2024 — McMap. All rights reserved.